mirror of
https://git.rwth-aachen.de/acs/public/villas/web/
synced 2025-03-09 00:00:01 +01:00
make the CI happy
This commit is contained in:
parent
5409e48537
commit
6fe522fe9a
1 changed files with 11 additions and 11 deletions
|
@ -21,7 +21,7 @@
|
|||
|
||||
import React from 'react';
|
||||
import { Container } from 'flux/utils';
|
||||
import { FormGroup, FormControl, FormLabel, Button, ProgressBar, Col } from 'react-bootstrap';
|
||||
import { FormGroup, FormControl, FormLabel, Button, Col } from 'react-bootstrap';
|
||||
|
||||
import FileStore from './file-store';
|
||||
import LoginStore from '../user/login-store';
|
||||
|
@ -105,19 +105,19 @@ class SelectFile extends React.Component {
|
|||
|
||||
render() {
|
||||
|
||||
let fileOptions;
|
||||
if (this.state.files.length > 0){
|
||||
fileOptions = this.state.files.map(f =>
|
||||
<option key={f.id} value={f.id}>{f.name}</option>
|
||||
);
|
||||
} else {
|
||||
fileOptions = <option >No files for this simulation model</option>
|
||||
}
|
||||
let fileOptions;
|
||||
if (this.state.files.length > 0){
|
||||
fileOptions = this.state.files.map(f =>
|
||||
<option key={f.id} value={f.id}>{f.name}</option>
|
||||
);
|
||||
} else {
|
||||
fileOptions = <option >No files for this simulation model</option>
|
||||
}
|
||||
|
||||
const progressBarStyle = {
|
||||
/*const progressBarStyle = {
|
||||
marginLeft: '100px',
|
||||
marginTop: '-25px'
|
||||
};
|
||||
};*/
|
||||
|
||||
return <div>
|
||||
<FormGroup>
|
||||
|
|
Loading…
Add table
Reference in a new issue