1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-26 01:23:24 +00:00

revert generate -> generator rename

This commit is contained in:
✨ Audrey ✨
2025-04-23 15:03:54 -04:00
parent e000fd77d4
commit a990419502
8 changed files with 9 additions and 9 deletions

View File

@@ -233,7 +233,7 @@ export class CredentialGeneratorComponent implements OnInit, OnChanges, OnDestro
// wire up the generator
this.generatorService
.generator$({
.generate$({
on$: this.generate$.pipe(
tap((g) => this.log.debug(g, "generate request issued by component")),
),

View File

@@ -182,7 +182,7 @@ export class PasswordGeneratorComponent implements OnInit, OnChanges, OnDestroy
// wire up the generator
this.generatorService
.generator$({ on$: this.generate$, account$: this.account$ })
.generate$({ on$: this.generate$, account$: this.account$ })
.pipe(
catchError((error: unknown, generator) => {
if (typeof error === "string") {

View File

@@ -207,7 +207,7 @@ export class UsernameGeneratorComponent implements OnInit, OnChanges, OnDestroy
// wire up the generator
this.generatorService
.generator$({
.generate$({
on$: this.generate$,
account$: this.account$,
})