Skip to content

Commit 7f4fb56

Browse files
lucaslorentzclaude
andcommitted
Add table-layout fixed and word-break to orchestrations and executions tables
Prevents long instance IDs, execution IDs, and tags from overflowing the table and pushing columns off-screen. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 2fa163a commit 7f4fb56

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/LLL.DurableTask.Ui/app/src/views/orchestration/ExecutionsList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function ExecutionsList({ instanceId, currentExecutionId }: Props) {
4040

4141
return (
4242
<TableContainer>
43-
<Table>
43+
<Table sx={{ tableLayout: "fixed", wordBreak: "break-word" }}>
4444
<TableHead>
4545
<TableRow>
4646
<TableCell>ExecutionId</TableCell>

src/LLL.DurableTask.Ui/app/src/views/orchestrations/OrchestrationsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ export function OrchestrationsTable({ result, onAction }: Props) {
186186
</Stack>
187187
</Toolbar>
188188
)}
189-
<Table>
189+
<Table sx={{ tableLayout: "fixed", wordBreak: "break-word" }}>
190190
<TableHead>
191191
<TableRow>
192192
{hasActions && (

0 commit comments

Comments
 (0)