This is an automated email from the ASF dual-hosted git repository.

hugh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 85b3401be8 fix: Tag link issue from CRUD page (#24223)
85b3401be8 is described below

commit 85b3401be89995843e4947e27cc562f905966419
Author: Hugh A. Miles II <[email protected]>
AuthorDate: Fri May 26 15:40:49 2023 -0400

    fix: Tag link issue from CRUD page (#24223)
---
 superset-frontend/src/components/Tags/Tag.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset-frontend/src/components/Tags/Tag.tsx 
b/superset-frontend/src/components/Tags/Tag.tsx
index ecd2cb135a..eaa00b973d 100644
--- a/superset-frontend/src/components/Tags/Tag.tsx
+++ b/superset-frontend/src/components/Tags/Tag.tsx
@@ -58,7 +58,7 @@ const Tag = ({
         <StyledTag role="link" key={id} onClick={onClick}>
           {id ? (
             <a
-              href={`/superset/tags/?tags=${name}`}
+              href={`/superset/all_entities/?tags=${name}`}
               target="_blank"
               rel="noreferrer"
             >

Reply via email to