mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #890 from keepassxreboot/fix/check_totp_input_field_visibility
Check input field visibility for TOTP icons
This commit is contained in:
commit
debf7db5f6
1 changed files with 4 additions and 0 deletions
|
|
@ -1068,6 +1068,10 @@ kpxc.initPasswordGenerator = function(inputs) {
|
|||
|
||||
kpxc.initOTPFields = function(inputs) {
|
||||
for (const i of inputs) {
|
||||
if (!kpxcFields.isVisible(i)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
const id = i.getLowerCaseAttribute('id');
|
||||
const name = i.getLowerCaseAttribute('name');
|
||||
const autocomplete = i.getLowerCaseAttribute('autocomplete');
|
||||
|
|
|
|||
Loading…
Reference in a new issue