Skip to content

Commit 20b7513

Browse files
committed
fix(icon): add missing httpClientModule
1 parent 1275c4c commit 20b7513

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

live-editing/configs/IconConfigGenerator.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { HttpClientModule } from '@angular/common/http';
12
import {IgxIconModule,
23
IgxInputGroupModule,
34
IgxButtonModule,
@@ -26,9 +27,9 @@ export class IconConfigGenerator implements IConfigGenerator {
2627
configs.push(new Config({
2728
component: 'SvgIconSampleComponent',
2829
appModuleConfig: new AppModuleConfig({
29-
imports: ['IgxIconModule', 'SvgIconSampleComponent'],
30+
imports: ['IgxIconModule', 'SvgIconSampleComponent', 'HttpClientModule'],
3031
ngDeclarations: ['SvgIconSampleComponent'],
31-
ngImports: ['IgxIconModule']
32+
ngImports: ['IgxIconModule', 'HttpClientModule']
3233
}),
3334
shortenComponentPathBy: "/data-display/icon/"
3435
}));

0 commit comments

Comments
 (0)