diff --git a/apps/browser/src/autofill/services/inline-menu-field-qualification.service.ts b/apps/browser/src/autofill/services/inline-menu-field-qualification.service.ts index c9bb2e64985..7ede4aee8cc 100644 --- a/apps/browser/src/autofill/services/inline-menu-field-qualification.service.ts +++ b/apps/browser/src/autofill/services/inline-menu-field-qualification.service.ts @@ -6,7 +6,7 @@ import { AutoFillConstants } from "./autofill-constants"; export class InlineMenuFieldQualificationService { private searchFieldNamesSet = new Set(AutoFillConstants.SearchFieldNames); private excludedAutofillLoginTypesSet = new Set(AutoFillConstants.ExcludedAutofillLoginTypes); - private usernameFieldTypes = new Set(["text", "email", "tel"]); + private usernameFieldTypes = new Set(["text", "email", "number", "tel"]); private fieldIgnoreListString = AutoFillConstants.FieldIgnoreList.join(","); private passwordFieldExcludeListString = AutoFillConstants.PasswordFieldExcludeList.join(","); private autofillFieldKeywordsMap: WeakMap = new WeakMap();