mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 06:13:38 +00:00
SG-632 Fix default value of email providers list (#4213)
This commit is contained in:
@@ -244,7 +244,10 @@ export class GeneratorComponent implements OnInit {
|
|||||||
];
|
];
|
||||||
|
|
||||||
this.usernameOptions = await this.usernameGenerationService.getOptions();
|
this.usernameOptions = await this.usernameGenerationService.getOptions();
|
||||||
if (this.usernameOptions.forwardedService == null) {
|
if (
|
||||||
|
this.usernameOptions.forwardedService == null ||
|
||||||
|
this.usernameOptions.forwardedService === ""
|
||||||
|
) {
|
||||||
this.forwardOptions.push({ name: "", value: null });
|
this.forwardOptions.push({ name: "", value: null });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ const DefaultOptions = {
|
|||||||
wordIncludeNumber: true,
|
wordIncludeNumber: true,
|
||||||
subaddressType: "random",
|
subaddressType: "random",
|
||||||
catchallType: "random",
|
catchallType: "random",
|
||||||
forwardedService: "simplelogin",
|
forwardedService: "",
|
||||||
forwardedAnonAddyDomain: "anonaddy.me",
|
forwardedAnonAddyDomain: "anonaddy.me",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user