1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-11-17 10:45:41 +01: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' }
]
}
}