From aa6b1df0ceda6b7a0da8c5f3311d8ab9579e903d Mon Sep 17 00:00:00 2001 From: varjolintu Date: Fri, 2 Apr 2021 17:59:45 +0300 Subject: [PATCH] Fix variable name --- keepassxc-browser/content/autocomplete.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keepassxc-browser/content/autocomplete.js b/keepassxc-browser/content/autocomplete.js index 6152315..b120520 100644 --- a/keepassxc-browser/content/autocomplete.js +++ b/keepassxc-browser/content/autocomplete.js @@ -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); }