File tree Expand file tree Collapse file tree 3 files changed +5
-10
lines changed
src/client/src/pages/Admin Expand file tree Collapse file tree 3 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -118,16 +118,11 @@ export default function Admin(props) {
118
118
< CircularProgress size = { 60 } />
119
119
</ Backdrop >
120
120
: < Paper elevation = { 1 } style = { { "padding" : "2em" } } >
121
- { statistics === 'Running' && < Alert severity = "info" > Execution is in Progress...</ Alert > }
122
- < Box
123
- display = "flex"
124
- justifyContent = "space-between"
125
- flexDirection = "row"
126
- style = { { padding : 20 } }
127
- >
121
+ { statistics === 'Running' && < Alert severity = "info" > Execution is in Progress...</ Alert > }
122
+ < Grid container spacing = { 5 } direction = "row" >
128
123
< UploadBox filesInput = { filesInput } handleUpload = { handleUpload } lastUploads = { lastUploads } />
129
124
< AnalysisBox handleExecute = { handleExecute } lastExecution = { lastExecution } statistics = { statistics } />
130
- </ Box >
125
+ </ Grid >
131
126
</ Paper >
132
127
}
133
128
</ Container >
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export default function AnalysisBox(props) {
13
13
const { handleExecute, lastExecution, statistics } = props ;
14
14
15
15
return (
16
- < Grid container item direction = "column" spacing = { 3 } sm = { 6 } >
16
+ < Grid item direction = "column" spacing = { 3 } sm = { 6 } >
17
17
< Paper >
18
18
< CardContent >
19
19
< Typography variant = "h5" style = { { paddingBottom : 5 } } >
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export default function UploadBox(props) {
13
13
const { filesInput, handleUpload, lastUploads } = props ;
14
14
15
15
return (
16
- < Grid container item direction = "column" spacing = { 3 } sm = { 6 } >
16
+ < Grid item direction = "column" spacing = { 3 } sm = { 6 } >
17
17
< Paper >
18
18
< CardContent >
19
19
< Typography variant = "h5" > Upload Files</ Typography >
You can’t perform that action at this time.
0 commit comments