From 9c41f85df38e0e93e69eb416e7a5ffc4ad217bd1 Mon Sep 17 00:00:00 2001 From: knhash Date: Fri, 2 Jul 2021 03:02:09 +0530 Subject: [PATCH] fix: remove, depend on upstream jslib --- src/app/vault/password-generator.component.ts | 5 ----- 1 file changed, 5 deletions(-) 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' } - ] } }