mirror of
https://github.com/bitwarden/browser
synced 2024-12-26 09:54:35 +01:00
Fix jslibModule forms (#742)
This commit is contained in:
parent
fa73c13b8c
commit
9d1df26dfa
@ -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 {}
|
||||
|
Loading…
Reference in New Issue
Block a user