This is an automated email from the ASF dual-hosted git repository.
guanmingchiu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new aebbf2de865 Fix tag filter with special characters (#58280)
aebbf2de865 is described below
commit aebbf2de86584ab1340c37da9d11222b06788f55
Author: Steve Ahn <[email protected]>
AuthorDate: Sat Nov 15 19:50:14 2025 -0800
Fix tag filter with special characters (#58280)
---
airflow-core/src/airflow/ui/src/pages/DagsList/DagTags.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow-core/src/airflow/ui/src/pages/DagsList/DagTags.tsx
b/airflow-core/src/airflow/ui/src/pages/DagsList/DagTags.tsx
index 6f28113236f..f4d38d62abe 100644
--- a/airflow-core/src/airflow/ui/src/pages/DagsList/DagTags.tsx
+++ b/airflow-core/src/airflow/ui/src/pages/DagsList/DagTags.tsx
@@ -35,7 +35,7 @@ export const DagTags = ({ hideIcon = false, tags }: Props) =>
(
icon={hideIcon ? undefined : <FiTag data-testid="dag-tag" />}
interactive
items={tags.map(({ name }) => (
- <RouterLink key={name} to={`/dags?${SearchParamsKeys.TAGS}=${name}`}>
+ <RouterLink key={name}
to={`/dags?${SearchParamsKeys.TAGS}=${encodeURIComponent(name)}`}>
{name}
</RouterLink>
))}