21508: Fix io panel json content width
authorStephen Smith <stephen@curii.com>
Tue, 2 Apr 2024 01:08:07 +0000 (21:08 -0400)
committerStephen Smith <stephen@curii.com>
Tue, 2 Apr 2024 01:08:07 +0000 (21:08 -0400)
Arvados-DCO-1.1-Signed-off-by: Stephen Smith <stephen@curii.com>

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

index db950bffe029eea132c67f1d20c2faa9d033a8dc..52da53fdc981235314d227a7ef1c69335574bc60 100644 (file)
@@ -658,7 +658,7 @@ interface ProcessIORawDataProps {
 }
 
 const ProcessIORaw = withStyles(styles)(({ data }: ProcessIORawDataProps) => (
-    <Paper elevation={0}>
+    <Paper elevation={0} style={{width: "100%"}}>
         <DefaultCodeSnippet
             lines={[JSON.stringify(data, null, 2)]}
             linked