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

Rename all occurances of fb to formBuilder (#595)

This commit is contained in:
Robyn MacCallum
2021-12-31 10:05:23 -05:00
committed by GitHub
parent e4cd0af2f9
commit cc989e4071
2 changed files with 5 additions and 5 deletions

View File

@@ -20,7 +20,7 @@ export class ExportComponent implements OnInit {
formPromise: Promise<string>;
disabledByPolicy: boolean = false;
exportForm = this.fb.group({
exportForm = this.formBuilder.group({
format: ["json"],
secret: [""],
});
@@ -41,7 +41,7 @@ export class ExportComponent implements OnInit {
protected win: Window,
private logService: LogService,
private userVerificationService: UserVerificationService,
private fb: FormBuilder
private formBuilder: FormBuilder
) {}
async ngOnInit() {