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


##########
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:
   Right, the inverted colorscheme for tooltips can be tricky.



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