This is an automated email from the ASF dual-hosted git repository.
pawarprasad123 pushed a commit to branch atlas-2.6
in repository https://gitbox.apache.org/repos/asf/atlas.git
The following commit(s) were added to refs/heads/atlas-2.6 by this push:
new 1f17ef9cf ATLAS-5333: Atlas React UI: Clearing a Classification search
filter triggers 400 Bad Request on empty parameters (#692) ( cherry-picked from
commit 7a528de5f7fe691d510e4c1d42f14db9f2aa619a)
1f17ef9cf is described below
commit 1f17ef9cfb58b7a1f708bb3fa3c300d2196173a9
Author: Brijesh Bhalala <[email protected]>
AuthorDate: Wed Jul 8 15:00:03 2026 +0530
ATLAS-5333: Atlas React UI: Clearing a Classification search filter
triggers 400 Bad Request on empty parameters (#692)
( cherry-picked from commit 7a528de5f7fe691d510e4c1d42f14db9f2aa619a)
---
dashboard/src/utils/dashboardSearchUtils.ts | 1 -
1 file changed, 1 deletion(-)
diff --git a/dashboard/src/utils/dashboardSearchUtils.ts
b/dashboard/src/utils/dashboardSearchUtils.ts
index 15ebdf699..555ff9723 100644
--- a/dashboard/src/utils/dashboardSearchUtils.ts
+++ b/dashboard/src/utils/dashboardSearchUtils.ts
@@ -43,7 +43,6 @@ const buildSearchParams = (
if (type === "all_classifications") {
params.set("tag", extra?.tag ?? "_ALL_CLASSIFICATION_TYPES");
- params.set("type", "");
} else {
params.set("type", extra?.type ?? "_ALL_ENTITY_TYPES");
}