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


##########
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:
   I just tried Link from Chakra and on the tooltip the link has background 
color inverted E.g dark-mode has background as white in interactive tooltip 
making it harder to read while the normal link appears correctly in non-tooltip 
and RouterLink appears correctly in tooltip. Maybe some issue with chakra 
tooltip and link so will try the change in another PR if I figure it out.



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