Core pipes backward compatibility v2 (#10109)

This commit is contained in:
Tomasz Gnyp 2024-08-20 11:30:56 +02:00 committed by GitHub
parent cd9dc4d8c2
commit 4807f10827
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 1 deletions

View File

@ -99,6 +99,7 @@ import { MaterialModule } from './material.module';
}), }),
MaterialModule MaterialModule
], ],
providers: [...CORE_PIPES],
exports: [ exports: [
...ABOUT_DIRECTIVES, ...ABOUT_DIRECTIVES,
...VIEWER_DIRECTIVES, ...VIEWER_DIRECTIVES,

View File

@ -61,7 +61,6 @@ export const CORE_PIPES = [
*/ */
@NgModule({ @NgModule({
imports: [...CORE_PIPES], imports: [...CORE_PIPES],
providers: [...CORE_PIPES],
exports: [...CORE_PIPES] exports: [...CORE_PIPES]
}) })
export class PipeModule {} export class PipeModule {}