Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/assets/javascripts/filtered_search/dropdown_hint.js.es68
1 files changed, 4 insertions, 4 deletions
diff --git a/app/assets/javascripts/filtered_search/dropdown_hint.js.es6 b/app/assets/javascripts/filtered_search/dropdown_hint.js.es6
index f1e317d91cc..63c20f57520 100644
--- a/app/assets/javascripts/filtered_search/dropdown_hint.js.es6
+++ b/app/assets/javascripts/filtered_search/dropdown_hint.js.es6
@@ -37,19 +37,19 @@
const dropdownData = [{
icon: 'fa-pencil',
hint: 'author:',
- tag: '<author>',
+ tag: '<@author>',
}, {
icon: 'fa-user',
hint: 'assignee:',
- tag: '<assignee>',
+ tag: '<@assignee>',
}, {
icon: 'fa-clock-o',
hint: 'milestone:',
- tag: '<milestone>',
+ tag: '<%milestone>',
}, {
icon: 'fa-tag',
hint: 'label:',
- tag: '<label>',
+ tag: '<~label>',
}];
this.droplab.changeHookList(this.hookId, this.dropdown, [droplabFilter], this.config);