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 1f0cd2f8acd52b83fc41f4a0f252f03f7e12ad0b Author: Brent Bovenzi <[email protected]> AuthorDate: Sat Sep 27 04:14:31 2025 -0400 Use welcome on dashboard instead of airflow (#56074) (cherry picked from commit ce2d805c26088c9be83fead10edf9202c60a89e4) --- airflow-core/src/airflow/ui/src/pages/Dashboard/Dashboard.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/airflow-core/src/airflow/ui/src/pages/Dashboard/Dashboard.tsx b/airflow-core/src/airflow/ui/src/pages/Dashboard/Dashboard.tsx index 969f1bd79c7..eb4fe29debd 100644 --- a/airflow-core/src/airflow/ui/src/pages/Dashboard/Dashboard.tsx +++ b/airflow-core/src/airflow/ui/src/pages/Dashboard/Dashboard.tsx @@ -71,7 +71,9 @@ export const Dashboard = () => { </Accordion.Root> ) : undefined} <Heading order={2} size="2xl"> - {typeof instanceName === "string" && instanceName !== "" ? instanceName : translate("welcome")} + {typeof instanceName === "string" && instanceName !== "" && instanceName !== "Airflow" + ? instanceName + : translate("welcome")} </Heading> <Box order={3}> <Stats />
