1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

Display autofill overlay for zoom.us signin password (#16900)

This commit is contained in:
Jeffrey Holland
2025-11-13 11:26:04 +01:00
committed by GitHub
parent b2682a4139
commit ea0cdfc37c

View File

@@ -1085,7 +1085,15 @@ export class AutofillOverlayContentService implements AutofillOverlayContentServ
pageDetails,
)
) {
this.setQualifiedAccountCreationFillType(autofillFieldData);
const hasUsernameField = [...this.formFieldElements.values()].some((field) =>
this.inlineMenuFieldQualificationService.isUsernameField(field),
);
if (hasUsernameField) {
void this.setQualifiedLoginFillType(autofillFieldData);
} else {
this.setQualifiedAccountCreationFillType(autofillFieldData);
}
return false;
}