1
0
mirror of https://github.com/bitwarden/desktop synced 2025-12-25 12:43:29 +00:00

fix: remove, depend on upstream jslib

This commit is contained in:
knhash
2021-07-02 03:02:09 +05:30
parent ee36d14c10
commit 9c41f85df3

View File

@@ -13,13 +13,8 @@ import {
templateUrl: 'password-generator.component.html',
})
export class PasswordGeneratorComponent extends BasePasswordGeneratorComponent {
passTypeOptions: any[];
constructor(passwordGenerationService: PasswordGenerationService, platformUtilsService: PlatformUtilsService,
i18nService: I18nService) {
super(passwordGenerationService, platformUtilsService, i18nService, window);
this.passTypeOptions = [
{ name: 'password', value: 'password' },
{ name: 'passphrase', value: 'passphrase' }
]
}
}