Add DatePipe provider to JslibModule (#741)

This commit is contained in:
Thomas Rittson 2022-03-28 06:40:47 +10:00 committed by GitHub
parent 9d1df26dfa
commit 13ef7aea7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
import { CommonModule } from "@angular/common";
import { CommonModule, DatePipe } from "@angular/common";
import { NgModule } from "@angular/core";
import { FormsModule, ReactiveFormsModule } from "@angular/forms";
@ -92,6 +92,6 @@ import { UserNamePipe } from "./pipes/user-name.pipe";
VerifyMasterPasswordComponent,
ExportScopeCalloutComponent,
],
providers: [UserNamePipe, SearchPipe, I18nPipe],
providers: [UserNamePipe, SearchPipe, I18nPipe, DatePipe],
})
export class JslibModule {}