Change hint format for main filtered search dropdown

Change hint format from `type<value>` to `type:value` so it matches
the required syntax to perform filtering

Fixes #29786
This commit is contained in:
Chris Peressini 2017-08-29 12:28:23 +00:00
parent 1e60725174
commit 88472420bf
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ class DropdownHint extends gl.FilteredSearchDropdown {
.map(tokenKey => ({
icon: `fa-${tokenKey.icon}`,
hint: tokenKey.key,
tag: `<${tokenKey.tag}>`,
tag: `:${tokenKey.tag}`,
type: tokenKey.type,
}));