1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-04 05:08:06 +02:00

Fix jslibModule forms (#742)

This commit is contained in:
Oscar Hinton 2022-03-27 22:32:21 +02:00 committed by GitHub
parent fa73c13b8c
commit 9d1df26dfa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
import { CommonModule } from "@angular/common";
import { NgModule } from "@angular/core";
import { FormsModule, ReactiveFormsModule } from "@angular/forms";
import { AvatarComponent } from "./components/avatar.component";
import { CalloutComponent } from "./components/callout.component";
@ -35,6 +36,8 @@ import { UserNamePipe } from "./pipes/user-name.pipe";
closeButton: true,
}),
CommonModule,
FormsModule,
ReactiveFormsModule,
],
declarations: [
A11yInvalidDirective,
@ -89,6 +92,6 @@ import { UserNamePipe } from "./pipes/user-name.pipe";
VerifyMasterPasswordComponent,
ExportScopeCalloutComponent,
],
providers: [UserNamePipe, SearchPipe],
providers: [UserNamePipe, SearchPipe, I18nPipe],
})
export class JslibModule {}