Skip to content

Commit ef84b74

Browse files
authored
Merge pull request #3054 from IgniteUI/VDyulgerov/missing-httpClientModule-vnext
V dyulgerov/missing http client module vnext
2 parents 0622026 + a758aca commit ef84b74

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)