diff --git a/keepassxc-browser/content/fill.js b/keepassxc-browser/content/fill.js index c777f3e..a758a36 100644 --- a/keepassxc-browser/content/fill.js +++ b/keepassxc-browser/content/fill.js @@ -348,10 +348,5 @@ const passwordFillIsAllowed = function(elem) { return true; } - if (elem?.getLowerCaseAttribute('type') !== 'password') { - kpxcUI.createNotification('warning', tr('fieldsPasswordFillNotAccepted')); - return false; - } - - return true; + return elem?.getLowerCaseAttribute('type') === 'password'; };