Skip to content

Commit c71fb6d

Browse files
committed
chore: Better flow for logs
1 parent 296e710 commit c71fb6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/Logs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function LogsRenderer({ logs }: { logs: Log[] }): ReactElement {
3535
if (logs.length === 0) return <ContentCard>No logs...</ContentCard>;
3636
return (
3737
<div className="flex gap-4 justify-center w-full m-8 grow">
38-
<div className="grow shrink basis-0 min-w-0 flex flex-col gap-2">
38+
<div className="grow shrink basis-0 min-w-0 flex flex-col gap-2 max-h-screen overflow-y-auto">
3939
{logs.map(log => (
4040
<LogRenderer selected={selected === log} log={log} onClick={handleClick} />
4141
))}

0 commit comments

Comments
 (0)