diff --git a/src/app/vault/password-generator.component.ts b/src/app/vault/password-generator.component.ts index 008eeba0..5e76f528 100644 --- a/src/app/vault/password-generator.component.ts +++ b/src/app/vault/password-generator.component.ts @@ -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' } - ] } }