diff --git a/client/src/components/Panels/utilities.ts b/client/src/components/Panels/utilities.ts index ff75e194b13d..8bda77394f33 100644 --- a/client/src/components/Panels/utilities.ts +++ b/client/src/components/Panels/utilities.ts @@ -291,7 +291,7 @@ export function searchToolsByKeys( ? keys.startsWith : order; - const wordMatches = actualValueWords.filter((word) => queryWords.includes(word)); + const wordMatches = Array.from(new Set(actualValueWords.filter((word) => queryWords.includes(word)))); if (!usesDL) { if (actualValue.match(queryValue)) { // if string.match() returns true, matching tool found