1
0
Fork 0
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:
Sonja Happ 2020-02-18 16:42:10 +01:00
parent 5409e48537
commit 6fe522fe9a

View file

@ -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>