mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #2181 from Flamefire/patch-1
Remove duplicate notification
This commit is contained in:
commit
ab12ac8a7b
1 changed files with 1 additions and 6 deletions
|
|
@ -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';
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue