use exact search instead of fuzzy search for branch filter dropdown (#19885)

tokarchuk/v1.17
wxiaoguang 2 years ago committed by GitHub
parent df9612bb53
commit d0a2c1e82b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      web_src/js/features/repo-common.js

@ -110,14 +110,14 @@ export function initRepoCommonBranchOrTagDropdown(selector) {
export function initRepoCommonFilterSearchDropdown(selector) { export function initRepoCommonFilterSearchDropdown(selector) {
const $dropdown = $(selector); const $dropdown = $(selector);
$dropdown.dropdown({ $dropdown.dropdown({
fullTextSearch: true, fullTextSearch: 'exact',
selectOnKeydown: false, selectOnKeydown: false,
onChange(_text, _value, $choice) { onChange(_text, _value, $choice) {
if ($choice.data('url')) { if ($choice.attr('data-url')) {
window.location.href = $choice.data('url'); window.location.href = $choice.attr('data-url');
} }
}, },
message: {noResults: $dropdown.data('no-results')}, message: {noResults: $dropdown.attr('data-no-results')},
}); });
} }

Loading…
Cancel
Save