1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-11 10:10:25 +01:00

[PM-10598] Revert autocomplete="off" removal when qualifying the inline menu for identity fields (#10402)

This commit is contained in:
Cesar Gonzalez 2024-08-05 10:11:54 -05:00 committed by GitHub
parent 3bf820606e
commit 157f3a5d39
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -286,7 +286,10 @@ export class InlineMenuFieldQualificationService
return true;
}
return this.keywordsFoundInFieldData(field, this.identityFieldKeywords);
return (
!this.fieldContainsAutocompleteValues(field, this.autocompleteDisabledValues) &&
this.keywordsFoundInFieldData(field, this.identityFieldKeywords)
);
}
/**