diff --git a/src/app/services/services.module.ts b/src/app/services/services.module.ts index 3a60bb46aa1..defea6760e7 100644 --- a/src/app/services/services.module.ts +++ b/src/app/services/services.module.ts @@ -117,6 +117,7 @@ function initFactory(i18n: I18nService): Function { { provide: UtilsServiceAbstraction, useValue: utilsService }, { provide: CryptoServiceAbstraction, useValue: cryptoService }, { provide: PlatformUtilsServiceAbstraction, useValue: platformUtilsService }, + { provide: PasswordGenerationServiceAbstraction, useValue: passwordGenerationService }, { provide: APP_INITIALIZER, useFactory: initFactory, diff --git a/src/app/vault/add-edit.component.html b/src/app/vault/add-edit.component.html index 2e28076e1d1..648a2b919c4 100644 --- a/src/app/vault/add-edit.component.html +++ b/src/app/vault/add-edit.component.html @@ -237,7 +237,9 @@ - +
+ +
diff --git a/src/app/vault/password-generator.component.html b/src/app/vault/password-generator.component.html index 2450c4b7996..7f15cda9ad6 100644 --- a/src/app/vault/password-generator.component.html +++ b/src/app/vault/password-generator.component.html @@ -1,15 +1,77 @@