summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/filtered_search/filtered_search_manager.js.es6
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/filtered_search/filtered_search_manager.js.es6')
-rw-r--r--app/assets/javascripts/filtered_search/filtered_search_manager.js.es614
1 files changed, 3 insertions, 11 deletions
diff --git a/app/assets/javascripts/filtered_search/filtered_search_manager.js.es6 b/app/assets/javascripts/filtered_search/filtered_search_manager.js.es6
index 565f2347072..d2ea4de18aa 100644
--- a/app/assets/javascripts/filtered_search/filtered_search_manager.js.es6
+++ b/app/assets/javascripts/filtered_search/filtered_search_manager.js.es6
@@ -136,21 +136,13 @@
const condition = gl.FilteredSearchTokenKeys
.searchByConditionKeyValue(token.key, token.value.toLowerCase());
const { param } = gl.FilteredSearchTokenKeys.searchByKey(token.key);
+ const keyParam = param ? `${token.key}_${param}` : token.key;
let tokenPath = '';
- let keyParam = token.key;
- if (param) {
- keyParam += `_${param}`;
- }
-
- if (token.wildcard && condition) {
+ if (condition) {
tokenPath = condition.url;
- } else if (token.wildcard) {
- // wildcard means that the token does not have a symbol
- tokenPath = `${keyParam}=${encodeURIComponent(token.value)}`;
} else {
- // Remove the token symbol
- tokenPath = `${keyParam}=${encodeURIComponent(token.value.slice(1))}`;
+ tokenPath = `${keyParam}=${encodeURIComponent(token.value)}`;
}
paths.push(tokenPath);