Skip to content

Commit 4681b45

Browse files
committed
Fix plain card not included in module, causing compile issues in apps
1 parent 1b4f942 commit 4681b45

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libs/fabric/src/lib/components/hover-card/hover-card.module.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ import { NgModule, NO_ERRORS_SCHEMA } from '@angular/core';
77
import { ExpandingCard, HoverCard, PlainCard } from 'office-ui-fabric-react/lib/HoverCard';
88
import { FabHoverCardComponent } from './hover-card.component';
99
import { FabExpandingCardComponent } from './expanding-card.component';
10+
import { FabPlainCardComponent } from './plain-card.component';
1011

11-
const components = [FabHoverCardComponent, FabExpandingCardComponent];
12+
const components = [FabHoverCardComponent, FabExpandingCardComponent, FabPlainCardComponent];
1213

1314
@NgModule({
1415
imports: [CommonModule],

0 commit comments

Comments
 (0)