Skip to content

Commit fae487e

Browse files
committed
wrap devmod info
1 parent 7e4329e commit fae487e

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

ui/src/components/repo/pod.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,16 @@ export function DeckTitle({ id }) {
153153
{devmode && (
154154
<Box>
155155
ID: <Code>{pod.id}</Code>
156-
Children: <Code>{JSON.stringify(pod.children)}</Code>
156+
Children:{" "}
157+
<Box
158+
component="pre"
159+
sx={{
160+
whiteSpace: "pre-wrap",
161+
width: 400,
162+
}}
163+
>
164+
{JSON.stringify(pod.children)}
165+
</Box>
157166
</Box>
158167
)}
159168

0 commit comments

Comments
 (0)