Skip to content

Commit 3d8f230

Browse files
committed
stdout/error rename maxH to maxHeight
1 parent 9cfa4fe commit 3d8f230

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/src/components/repo/pod.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,7 @@ function PodWrapper({ id, draghandle, children }) {
10121012
</Box>
10131013

10141014
{pod.stdout && (
1015-
<Box overflow="scroll" maxH="3xs" border="1px">
1015+
<Box overflow="scroll" maxHeight="200px" border="1px">
10161016
{/* <Code maxW="lg" whiteSpace="pre-wrap">
10171017
{pod.stdout}
10181018
</Code> */}
@@ -1046,7 +1046,7 @@ function PodWrapper({ id, draghandle, children }) {
10461046
</Flex>
10471047
)}
10481048
{pod.error && (
1049-
<Box overflow="scroll" maxH="3xs" border="1px" bg="gray.50">
1049+
<Box overflow="scroll" maxHeight="3xs" border="1px" bg="gray.50">
10501050
<Box color="red">Error: {pod.error.evalue}</Box>
10511051
{pod.error.stacktrace && (
10521052
<Box>

0 commit comments

Comments
 (0)