Fix variable name

This commit is contained in:
varjolintu 2021-04-02 17:59:45 +03:00
parent 25d9fd1c67
commit aa6b1df0ce

View file

@ -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);
}