mirror of
https://github.com/ansible/awx.git
synced 2026-01-18 13:11:19 -03:30
fix issue where unicode based search terms couldn't be removed
This commit is contained in:
parent
e3cb531180
commit
76424425b2
@ -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);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user