mirror of
https://github.com/ansible/awx.git
synced 2026-03-05 10:41:05 -03:30
Merge pull request #2573 from jlmitch5/fixEmojiRemoval
fix issue where unicode based search terms couldn't be removed
This commit is contained in:
@@ -441,7 +441,7 @@ function QuerysetService ($q, Rest, ProcessErrors, $rootScope, Wait, DjangoSearc
|
|||||||
searchParamParts[paramPartIndex] = decodeURIComponent(paramPart);
|
searchParamParts[paramPartIndex] = decodeURIComponent(paramPart);
|
||||||
});
|
});
|
||||||
|
|
||||||
const paramPartIndex = searchParamParts.indexOf(value);
|
const paramPartIndex = searchParamParts.indexOf(decodeURIComponent(value));
|
||||||
|
|
||||||
if (paramPartIndex !== -1) {
|
if (paramPartIndex !== -1) {
|
||||||
searchParamParts.splice(paramPartIndex, 1);
|
searchParamParts.splice(paramPartIndex, 1);
|
||||||
|
|||||||
Reference in New Issue
Block a user