mirror of
https://github.com/bitwarden/browser
synced 2025-01-23 01:33:02 +01:00
[PM-10598] Revert autocomplete="off" removal when qualifying the inline menu for identity fields (#10402)
This commit is contained in:
parent
3bf820606e
commit
157f3a5d39
@ -286,7 +286,10 @@ export class InlineMenuFieldQualificationService
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.keywordsFoundInFieldData(field, this.identityFieldKeywords);
|
return (
|
||||||
|
!this.fieldContainsAutocompleteValues(field, this.autocompleteDisabledValues) &&
|
||||||
|
this.keywordsFoundInFieldData(field, this.identityFieldKeywords)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user