Commit 88472420 authored by Chris Peressini's avatar Chris Peressini

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
parent 1e607251
......@@ -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,
}));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment