19700: Increase io panel max height to prevent unnecessary scrolling
authorStephen Smith <stephen@curii.com>
Thu, 1 Dec 2022 16:14:04 +0000 (11:14 -0500)
committerStephen Smith <stephen@curii.com>
Thu, 1 Dec 2022 16:14:04 +0000 (11:14 -0500)
Arvados-DCO-1.1-Signed-off-by: Stephen Smith <stephen@curii.com>

src/views/process-panel/process-io-card.tsx

index 14a6eae273a195e143dd6bc0533e02b5bbd942f4..ceba293e34b4edef1815dc95b1977009f617132f 100644 (file)
@@ -128,7 +128,8 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
         paddingTop: theme.spacing.unit * 0.5
     },
     tableWrapper: {
-        height: `calc(100% - ${theme.spacing.unit * 6}px)`,
+        height: 'auto',
+        maxHeight: `calc(100% - ${theme.spacing.unit * 4.5}px)`,
         overflow: 'auto',
     },
     tableRoot: {