This is an automated email from the ASF dual-hosted git repository. kaxilnaik pushed a commit to branch v3-1-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 79200ed856aea00dbb9857586be7afc11657f26d Author: Dheeraj Turaga <[email protected]> AuthorDate: Tue Sep 30 07:58:29 2025 -0500 Disable Gantt view by default (#56242) (cherry picked from commit 406a1a8ea67e1f4946791129f439105bde49f84d) --- airflow-core/src/airflow/ui/src/layouts/Details/DetailsLayout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow-core/src/airflow/ui/src/layouts/Details/DetailsLayout.tsx b/airflow-core/src/airflow/ui/src/layouts/Details/DetailsLayout.tsx index 40a05fb9e7f..019e7cb5a54 100644 --- a/airflow-core/src/airflow/ui/src/layouts/Details/DetailsLayout.tsx +++ b/airflow-core/src/airflow/ui/src/layouts/Details/DetailsLayout.tsx @@ -70,7 +70,7 @@ export const DetailsLayout = ({ children, error, isLoading, tabs }: Props) => { undefined, ); - const [showGantt, setShowGantt] = useLocalStorage<boolean>(`show_gantt-${dagId}`, true); + const [showGantt, setShowGantt] = useLocalStorage<boolean>(`show_gantt-${dagId}`, false); const { fitView, getZoom } = useReactFlow(); const { data: warningData } = useDagWarningServiceListDagWarnings({ dagId }); const { onClose, onOpen, open } = useDisclosure();
