Skip to content

Commit

Permalink
Fix main layout overflow issue
Browse files Browse the repository at this point in the history
The create connection page was overflowing the main content container
which meant the sidebar wasn't displaying when scrolling down.
  • Loading branch information
jbeisen committed Nov 28, 2023
1 parent fc2c32f commit 760fc5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arroyo-console/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ function App() {
const localUdfsContextValue = getLocalUdfsContextValue();

let content = (
<GridItem className="main" area={'main'}>
<GridItem className="main" area={'main'} overflow={'auto'}>
{<Outlet />}
</GridItem>
);
Expand Down

0 comments on commit 760fc5f

Please sign in to comment.