This is an automated email from the ASF dual-hosted git repository.
bbovenzi 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 f3c1f219f89 Link to asset from asset event in dashboard. (#47385)
f3c1f219f89 is described below
commit f3c1f219f89df9d9747f0304604bade43b0dc8aa
Author: Karthikeyan Singaravelan <[email protected]>
AuthorDate: Wed Mar 5 23:02:53 2025 +0530
Link to asset from asset event in dashboard. (#47385)
---
airflow/ui/src/pages/Dashboard/HistoricalMetrics/AssetEvent.tsx | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/airflow/ui/src/pages/Dashboard/HistoricalMetrics/AssetEvent.tsx
b/airflow/ui/src/pages/Dashboard/HistoricalMetrics/AssetEvent.tsx
index e5bf931d173..6013a1954c1 100644
--- a/airflow/ui/src/pages/Dashboard/HistoricalMetrics/AssetEvent.tsx
+++ b/airflow/ui/src/pages/Dashboard/HistoricalMetrics/AssetEvent.tsx
@@ -51,7 +51,9 @@ export const AssetEvent = ({ event }: { readonly event:
AssetEventResponse }) =>
}
showArrow
>
- <Text> {event.name ?? ""} </Text>
+ <Link to={`/assets/${event.asset_id}`}>
+ <Text color="fg.info"> {event.name ?? ""} </Text>
+ </Link>
</Tooltip>
</HStack>
<HStack>