mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Fix variable name
This commit is contained in:
parent
25d9fd1c67
commit
aa6b1df0ce
1 changed files with 1 additions and 1 deletions
|
|
@ -203,7 +203,7 @@ class Autocomplete {
|
|||
return;
|
||||
}
|
||||
|
||||
this.index = this.elements.findIndex(c => c.value === input.value);
|
||||
this.index = this.elements.findIndex(c => c.value === inputField.value);
|
||||
if (this.index >= 0) {
|
||||
this.fillPassword(inputField.value, this.index, this.elements[this.index].uuid);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue