From 848191140d354129f60e110aadaf69e282f70aff Mon Sep 17 00:00:00 2001 From: Oliver Boehlk Date: Sun, 24 May 2020 09:47:37 +0200 Subject: [PATCH] fix #69 strange render bug in aerospace --- frontend/src/components/selectResource/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/selectResource/index.js b/frontend/src/components/selectResource/index.js index 06d3ebc..844b5c1 100644 --- a/frontend/src/components/selectResource/index.js +++ b/frontend/src/components/selectResource/index.js @@ -8,7 +8,8 @@ import CircularProgress from '@material-ui/core/CircularProgress'; const useStyles = makeStyles(theme => ({ grid: { - display: "flex" + display: "flex", + flexDirection: "column" }, }));