This is an automated email from the ASF dual-hosted git repository.
shahar 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 ce2d805c260 Use welcome on dashboard instead of airflow (#56074)
ce2d805c260 is described below
commit ce2d805c26088c9be83fead10edf9202c60a89e4
Author: Brent Bovenzi <[email protected]>
AuthorDate: Sat Sep 27 04:14:31 2025 -0400
Use welcome on dashboard instead of airflow (#56074)
---
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 />