Skip to content

Commit 2bda859

Browse files
authored
fix(logs): prevent dashboard horizontal scrolling (#7223)
1 parent cc5affa commit 2bda859

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • apps/sim/app/workspace/[workspaceId]/logs

apps/sim/app/workspace/[workspaceId]/logs/logs.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1228,8 +1228,8 @@ export default function Logs() {
12281228
filterTags={filterTags}
12291229
/>
12301230
{isDashboardView ? (
1231-
<div className='relative flex min-h-0 flex-1 flex-col overflow-auto'>
1232-
<div className='flex min-h-0 flex-1 flex-col px-6'>
1231+
<div className='relative flex min-h-0 flex-1 flex-col overflow-hidden'>
1232+
<div className='flex min-h-0 min-w-0 flex-1 flex-col overflow-y-auto overflow-x-hidden px-6'>
12331233
<Dashboard
12341234
stats={dashboardStatsQuery.data}
12351235
isLoading={dashboardStatsQuery.isLoading}

0 commit comments

Comments
 (0)