tirkarthi commented on code in PR #49680:
URL: https://github.com/apache/airflow/pull/49680#discussion_r2058943346
##########
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:
Thanks for the catch. I have made `interactive` to be opt in and on hover it
just display the tags with a separator. Then user can select the relevant tag.
Also removed an extra comma which resulted in ", , +2 more" which seems to be
not correct.

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