Skip to content

Commit 45a463d

Browse files
authored
fix: modify min width for task names (#56378)
1 parent 3bb0598 commit 45a463d

File tree

1 file changed

+1
-1
lines changed
  • airflow-core/src/airflow/ui/src/layouts/Details/Grid

1 file changed

+1
-1
lines changed

airflow-core/src/airflow/ui/src/layouts/Details/Grid/Grid.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export const Grid = ({ dagRunState, limit, runType, showGantt, triggeringUser }:
105105
tabIndex={0}
106106
width={showGantt ? "1/2" : "full"}
107107
>
108-
<Box display="flex" flexDirection="column" flexGrow={1} justifyContent="end" minWidth="100px">
108+
<Box display="flex" flexDirection="column" flexGrow={1} justifyContent="end" minWidth="200px">
109109
<TaskNames nodes={flatNodes} onRowClick={() => setMode("task")} />
110110
</Box>
111111
<Box position="relative">

0 commit comments

Comments
 (0)