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

choo121600 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 122146f6dcb fix(ui): avoid gantt annotation error during resize 
(#60877)
122146f6dcb is described below

commit 122146f6dcb757789187c771ec23de021097e862
Author: yuseok89 <[email protected]>
AuthorDate: Thu Jan 29 23:21:21 2026 +0900

    fix(ui): avoid gantt annotation error during resize (#60877)
    
    * fix(ui): avoid chart annotation left error by removing resizeDelay
    
    * fix(ui): keep resizeDelay and set annotation clip false in gantt
    
    * fix(ui): adjust annotation clip false position per prek formatting
---
 airflow-core/src/airflow/ui/src/layouts/Details/Gantt/utils.ts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/airflow-core/src/airflow/ui/src/layouts/Details/Gantt/utils.ts 
b/airflow-core/src/airflow/ui/src/layouts/Details/Gantt/utils.ts
index 87757a7fcf9..9741654e8d0 100644
--- a/airflow-core/src/airflow/ui/src/layouts/Details/Gantt/utils.ts
+++ b/airflow-core/src/airflow/ui/src/layouts/Details/Gantt/utils.ts
@@ -198,6 +198,7 @@ export const createChartOptions = ({
                 },
               ]),
         ],
+        clip: false,
       },
       legend: {
         display: false,

Reply via email to