diff --git a/awx/ui/client/src/shared/smart-search/queryset.service.js b/awx/ui/client/src/shared/smart-search/queryset.service.js index cb0b6087fc..5d860a55fa 100644 --- a/awx/ui/client/src/shared/smart-search/queryset.service.js +++ b/awx/ui/client/src/shared/smart-search/queryset.service.js @@ -441,7 +441,7 @@ function QuerysetService ($q, Rest, ProcessErrors, $rootScope, Wait, DjangoSearc searchParamParts[paramPartIndex] = decodeURIComponent(paramPart); }); - const paramPartIndex = searchParamParts.indexOf(value); + const paramPartIndex = searchParamParts.indexOf(decodeURIComponent(value)); if (paramPartIndex !== -1) { searchParamParts.splice(paramPartIndex, 1);