1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 17:23:37 +00:00

pm-5273 Update references

This commit is contained in:
Carlos Gonçalves
2024-03-09 09:53:14 +00:00
parent b6b7ea283c
commit 1145201549
16 changed files with 54 additions and 45 deletions

View File

@@ -8,6 +8,7 @@ import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/pl
import { StateService } from "@bitwarden/common/platform/abstractions/state.service";
import { PasswordGenerationServiceAbstraction } from "@bitwarden/common/tools/generator/password";
import { UsernameGenerationServiceAbstraction } from "@bitwarden/common/tools/generator/username";
import { CipherService } from "@bitwarden/common/vault/abstractions/cipher.service";
import { DialogService } from "@bitwarden/components";
import { PasswordGeneratorHistoryComponent } from "./password-generator-history.component";
@@ -21,6 +22,7 @@ export class GeneratorComponent extends BaseGeneratorComponent {
passwordGenerationService: PasswordGenerationServiceAbstraction,
usernameGenerationService: UsernameGenerationServiceAbstraction,
stateService: StateService,
cipherService: CipherService,
platformUtilsService: PlatformUtilsService,
i18nService: I18nService,
logService: LogService,
@@ -32,6 +34,7 @@ export class GeneratorComponent extends BaseGeneratorComponent {
usernameGenerationService,
platformUtilsService,
stateService,
cipherService,
i18nService,
logService,
route,