mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-26 12:25:20 +01:00
copy default options (#764)
This commit is contained in:
parent
0f0adc9bd9
commit
017fb5146f
@ -180,7 +180,7 @@ export class PasswordGenerationService implements PasswordGenerationServiceAbstr
|
||||
async getOptions(): Promise<[any, PasswordGeneratorPolicyOptions]> {
|
||||
let options = await this.stateService.getPasswordGenerationOptions();
|
||||
if (options == null) {
|
||||
options = DefaultOptions;
|
||||
options = Object.assign({}, DefaultOptions);
|
||||
} else {
|
||||
options = Object.assign({}, DefaultOptions, options);
|
||||
}
|
||||
|
@ -97,7 +97,7 @@ export class UsernameGenerationService implements BaseUsernameGenerationService
|
||||
async getOptions(): Promise<any> {
|
||||
let options = await this.stateService.getUsernameGenerationOptions();
|
||||
if (options == null) {
|
||||
options = DefaultOptions;
|
||||
options = Object.assign({}, DefaultOptions);
|
||||
} else {
|
||||
options = Object.assign({}, DefaultOptions, options);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user