mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #1465 from keepassxreboot/fix/totp_ignore
Add inputMode check for 2FA field detection
This commit is contained in:
commit
aa0887e2a3
1 changed files with 2 additions and 1 deletions
|
|
@ -73,7 +73,8 @@ kpxcTOTPIcons.isValid = function(field, forced) {
|
|||
|| field.id.match(ignoreRegex)
|
||||
|| field.name.match(ignoreRegex)
|
||||
|| field.placeholder.match(ignoreRegex)
|
||||
|| field.readOnly) {
|
||||
|| field.readOnly
|
||||
|| field.inputMode === 'email') {
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue