This is an automated email from the ASF dual-hosted git repository.

ash pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v3-1-test by this push:
     new 6081335151e [v3-1-test] Modify min width for task names in grid view 
(#56378) (#56952)
6081335151e is described below

commit 6081335151e38924eede9a5155989d811873810c
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Oct 21 15:41:43 2025 +0100

    [v3-1-test] Modify min width for task names in grid view (#56378) (#56952)
    
    (cherry picked from commit 45a463d124269ccf322b12f6902b4b971b9afcea)
    
    Co-authored-by: LI,JHE-CHEN <[email protected]>
---
 airflow-core/src/airflow/ui/src/layouts/Details/Grid/Grid.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow-core/src/airflow/ui/src/layouts/Details/Grid/Grid.tsx 
b/airflow-core/src/airflow/ui/src/layouts/Details/Grid/Grid.tsx
index 99b7b664483..c61a41a960a 100644
--- a/airflow-core/src/airflow/ui/src/layouts/Details/Grid/Grid.tsx
+++ b/airflow-core/src/airflow/ui/src/layouts/Details/Grid/Grid.tsx
@@ -103,7 +103,7 @@ export const Grid = ({ limit, runType, showGantt, 
triggeringUser }: Props) => {
       tabIndex={0}
       width={showGantt ? "1/2" : "full"}
     >
-      <Box display="flex" flexDirection="column" flexGrow={1} 
justifyContent="end" minWidth="100px">
+      <Box display="flex" flexDirection="column" flexGrow={1} 
justifyContent="end" minWidth="200px">
         <TaskNames nodes={flatNodes} onRowClick={() => setMode("task")} />
       </Box>
       <Box position="relative">

Reply via email to