mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Hide cannot fill error on username-only pages
This commit is contained in:
parent
45a00b851d
commit
7cea76abf8
1 changed files with 1 additions and 1 deletions
|
|
@ -1812,7 +1812,7 @@ cip.fillIn = function(combination, onlyPassword, suppressWarnings) {
|
|||
// exactly one pair of credentials available
|
||||
if (cip.credentials.length === 1) {
|
||||
let filledIn = false;
|
||||
if (uField && !onlyPassword) {
|
||||
if (uField && (!onlyPassword || _singleInputEnabledForPage)) {
|
||||
cip.setValueWithChange(uField, cip.credentials[0].login);
|
||||
browser.runtime.sendMessage({
|
||||
action: 'page_set_login_id', args: [0]
|
||||
|
|
|
|||
Loading…
Reference in a new issue