Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.

Commit 68fd658

Browse files
fix: Full width for JSON view rows (#433)
--------- Co-authored-by: Koustav Das <[email protected]>
1 parent e91027f commit 68fd658

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/Stream/Views/Explore/JSONView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ const JsonView = (props: {
379379
<Box
380380
className={classes.innerContainer}
381381
style={{ display: 'flex', flexDirection: 'row', maxHeight: `calc(100vh - ${primaryHeaderHeight}px )` }}>
382-
<Stack gap={0}>
382+
<Stack gap={0} style={{ width: '100%' }}>
383383
<Stack style={{ overflowY: 'scroll' }}>
384384
<JsonRows isSearching={isSearching} setContextMenu={setContextMenu} />
385385
</Stack>

0 commit comments

Comments
 (0)