Skip to content

Commit dcbd184

Browse files
authored
Merge pull request #62 from lucaslorentz/fix-table-word-break
Add fixed table layout to orchestrations and executions tables
2 parents 2fa163a + 7f4fb56 commit dcbd184

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)