choo121600 commented on code in PR #53216:
URL: https://github.com/apache/airflow/pull/53216#discussion_r2777667098
##########
airflow-core/src/airflow/api_fastapi/core_api/services/ui/grid.py:
##########
@@ -69,11 +69,15 @@ def _get_aggs_for_node(detail):
max_end_date = max(x["end_date"] for x in detail if x["end_date"])
except ValueError:
max_end_date = None
+
+ dag_version_number = detail[0].get("dag_version_number")
Review Comment:
Thanks for catch this!
I fixed it :)
##########
airflow-core/src/airflow/ui/src/layouts/Details/DetailsLayout.tsx:
##########
@@ -79,6 +81,11 @@ export const DetailsLayout = ({ children, error, isLoading,
tabs }: Props) => {
);
const [showGantt, setShowGantt] =
useLocalStorage<boolean>(`show_gantt-${dagId}`, false);
+ const [showVersionIndicatorMode, setShowVersionIndicatorMode] =
Review Comment:
Done👍
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]