diff --git a/web_src/js/features/repo-common.js b/web_src/js/features/repo-common.js index 3ddabe10f1..d1acf0c379 100644 --- a/web_src/js/features/repo-common.js +++ b/web_src/js/features/repo-common.js @@ -78,14 +78,14 @@ export function initRepoCommonBranchOrTagDropdown(selector) { export function initRepoCommonFilterSearchDropdown(selector) { const $dropdown = $(selector); $dropdown.dropdown({ - fullTextSearch: true, + fullTextSearch: 'exact', selectOnKeydown: false, onChange(_text, _value, $choice) { - if ($choice.data('url')) { - window.location.href = $choice.data('url'); + if ($choice.attr('data-url')) { + window.location.href = $choice.attr('data-url'); } }, - message: {noResults: $dropdown.data('no-results')}, + message: {noResults: $dropdown.attr('data-no-results')}, }); }