bbovenzi commented on code in PR #49680:
URL: https://github.com/apache/airflow/pull/49680#discussion_r2058835310


##########
airflow-core/src/airflow/ui/src/pages/DagsList/DagTags.tsx:
##########
@@ -31,7 +32,11 @@ type Props = {
 export const DagTags = ({ hideIcon = false, tags }: Props) => (
   <LimitedItemsList
     icon={hideIcon ? undefined : <FiTag data-testid="dag-tag" />}
-    items={tags.map(({ name }) => name)}
+    items={tags.map(({ name }) => (
+      <RouterLink key={name} to={`/dags?tags=${name}`}>

Review Comment:
   If you have more than 3 tags, the rest will be displayed in a tooltip. We 
might want to see if passing `interactive` to the tooltip will be enough to 
make those ones linkable too



-- 
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]

Reply via email to