Skip to content

Commit ae007c6

Browse files
lunelsonclaude
andcommitted
H-6364: Fix results layout — independent scroll containers
Wrap results page in a flex column that fills viewport height. Both the entity panel (left) and evidence viewer (right) now scroll independently. Evidence panel max-width set to 780px and centered. scrollToPage only scrolls the evidence panel, not the whole page. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 6345875 commit ae007c6

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

apps/hash-frontend/src/pages/ingest/results.page.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ const IngestResultsPage: NextPageWithLayout = () => {
8888
};
8989

9090
return (
91-
<>
91+
<Box sx={{ display: "flex", flexDirection: "column", height: "100%" }}>
9292
<WorkersHeader
9393
crumbs={[
9494
{ title: "Ingest", href: "/ingest", id: "ingest" },
@@ -169,7 +169,8 @@ const IngestResultsPage: NextPageWithLayout = () => {
169169
flex: 1,
170170
overflow: "auto",
171171
p: 2,
172-
maxWidth: 720,
172+
maxWidth: 780,
173+
mx: "auto",
173174
}}
174175
>
175176
<PageViewer
@@ -191,7 +192,7 @@ const IngestResultsPage: NextPageWithLayout = () => {
191192
</Box>
192193
</Box>
193194
)}
194-
</>
195+
</Box>
195196
);
196197
};
197198

0 commit comments

Comments
 (0)