Skip to content

Commit 9e61b6c

Browse files
committed
fix: add missing PortalModule import
1 parent cbbc518 commit 9e61b6c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/app/material.module.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { LayoutModule } from '@angular/cdk/layout';
22
import { PlatformModule } from '@angular/cdk/platform';
3+
import { PortalModule } from '@angular/cdk/portal';
34
import { NgModule } from '@angular/core';
45
import { MatAutocompleteModule } from '@angular/material/autocomplete';
56
import { MatBadgeModule } from '@angular/material/badge';
@@ -63,7 +64,8 @@ const MATERIAL_MODULES = [
6364
];
6465
const CDK_MODULES = [
6566
LayoutModule,
66-
PlatformModule
67+
PlatformModule,
68+
PortalModule
6769
];
6870
@NgModule({
6971
exports: [

0 commit comments

Comments
 (0)