This commit is contained in:
parent
5934f5d0a7
commit
caea24b62b
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ export const keymap = {
|
|||
keymap.element.querySelectorAll("#keymapList .b3-list-item--hide-action > .b3-list-item__text").forEach(item => {
|
||||
const liElement = item.parentElement
|
||||
let matchedKeymap = false;
|
||||
if (keymapString === "" || keymapString === (item.nextElementSibling.nextElementSibling as HTMLInputElement).value) {
|
||||
if (keymapString === "" || (item.nextElementSibling.nextElementSibling as HTMLInputElement).value.indexOf(updateHotkeyTip(keymapString)) > -1) {
|
||||
matchedKeymap = true
|
||||
}
|
||||
if ((item.textContent.toLowerCase().indexOf(value.toLowerCase()) > -1 || value === "") && matchedKeymap) {
|
||||
|
|
Loading…
Add table
Reference in a new issue