Skip to content

Commit

Permalink
Merge branch 'passff:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
ClarkQAQ authored Oct 25, 2023
2 parents df73323 + 7851cfd commit 9d9c7b6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/modules/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,9 @@ PassFF.Page = (function () {
if (!result) return;
let inputs = [activeElement];
if (activeElement.form) {
inputs = activeElement.form.getElementsByTagName('input');
inputs = Array.from(activeElement.form.elements).filter(
el => el.tagName == "INPUT"
);
}
inputs = annotateInputs(Array.from(inputs).filter(isVisible));
setInputs(inputs, passwordData);
Expand Down

0 comments on commit 9d9c7b6

Please sign in to comment.