From 6fe522fe9a0186ba8a2dd11ea2652152a58392d1 Mon Sep 17 00:00:00 2001 From: Sonja Happ Date: Tue, 18 Feb 2020 16:42:10 +0100 Subject: [PATCH] make the CI happy --- src/file/select-file.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/file/select-file.js b/src/file/select-file.js index 9602f80..26f7689 100644 --- a/src/file/select-file.js +++ b/src/file/select-file.js @@ -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 => - - ); - } else { - fileOptions = - } + let fileOptions; + if (this.state.files.length > 0){ + fileOptions = this.state.files.map(f => + + ); + } else { + fileOptions = + } - const progressBarStyle = { + /*const progressBarStyle = { marginLeft: '100px', marginTop: '-25px' - }; + };*/ return