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


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

Review Comment:
   Actually, I wonder if we want to include Chakra.Link here to have a 
underline on hover so it is obvious to the user that it is a link?



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