pierrejeambrun commented on code in PR #51625: URL: https://github.com/apache/airflow/pull/51625#discussion_r2142119061
########## airflow-core/src/airflow/ui/src/i18n/locales/en/dag.json: ########## @@ -89,10 +89,11 @@ } }, "tabs": { + "asset_events": "Asset Events", "backfills": "Backfills", "code": "Code", "details": "Details", - "events": "Events", + "events": "Audit", Review Comment: Done ########## airflow-core/src/airflow/ui/src/pages/Run/Run.tsx: ########## @@ -29,9 +29,10 @@ import { Header } from "./Header"; const tabs = [ { icon: <MdOutlineTask />, label: "Task Instances", value: "" }, - { icon: <MdOutlineEventNote />, label: "Events", value: "events" }, + { icon: <MdOutlineEventNote />, label: "Audit", value: "events" }, Review Comment: Done ########## airflow-core/src/airflow/ui/src/pages/TaskInstance/TaskInstance.tsx: ########## @@ -36,9 +36,10 @@ const tabs = [ { icon: <MdReorder />, label: "Logs", value: "" }, { icon: <PiBracketsCurlyBold />, label: "Rendered Templates", value: "rendered_templates" }, { icon: <MdSyncAlt />, label: "XCom", value: "xcom" }, - { icon: <MdOutlineEventNote />, label: "Events", value: "events" }, + { icon: <MdOutlineEventNote />, label: "Audit", value: "events" }, Review Comment: Done ########## airflow-core/src/airflow/ui/src/pages/Task/Task.tsx: ########## @@ -31,7 +31,7 @@ import { Header } from "./Header"; const tabs = [ { icon: <LuChartColumn />, label: "Overview", value: "" }, { icon: <MdOutlineTask />, label: "Task Instances", value: "task_instances" }, - { icon: <MdOutlineEventNote />, label: "Events", value: "events" }, + { icon: <MdOutlineEventNote />, label: "Audit", value: "events" }, 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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org