mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #1743 from onthegocode/patch-1
Update autocomplete.js
This commit is contained in:
commit
9de3a21122
1 changed files with 1 additions and 3 deletions
|
|
@ -147,9 +147,7 @@ class Autocomplete {
|
|||
|
||||
deselectItem() {
|
||||
const items = this.list.querySelectorAll('div.kpxcAutocomplete-active');
|
||||
for (const item of items) {
|
||||
item.classList.remove('kpxcAutocomplete-active');
|
||||
}
|
||||
items.forEach(item => item.classList.remove('kpxcAutocomplete-active'));
|
||||
}
|
||||
|
||||
closeList() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue