Fixed scanmodal #155

Merged
niggl merged 2 commits from bugfix/154-scan_select_runner_by_id into dev 2023-02-23 07:34:39 +00:00

View File

@ -14,7 +14,7 @@
option.firstname + " " + (option.middlename || "") + " " + option.lastname;
const filterRunners = (label, filterText, option) =>
label.toLowerCase().includes(filterText.toLowerCase()) ||
option.value.toString().startsWith(filterText.toLowerCase());
option.value.id.toString().startsWith(filterText.toLowerCase());
function focus(el) {
el.focus();
}