Skip to content

Commit 958cc6a

Browse files
committed
test(feature): fixed the import of HttpClientModule
1 parent 05c0b7e commit 958cc6a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/app/routes/features/features.module.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { FeatureRendererComponent } from './feature-renderer.component';
88
import { MatInputModule } from '@angular/material';
99
import { FormsModule } from '@angular/forms';
1010
import { PaginatorModule } from '../../shared/components/paginator/paginator.module';
11+
import { HttpClientModule } from '@angular/common/http';
1112

1213
@NgModule({
1314
imports: [
@@ -16,11 +17,11 @@ import { PaginatorModule } from '../../shared/components/paginator/paginator.mod
1617
FeatureCardModule,
1718
MatInputModule,
1819
PaginatorModule,
19-
FormsModule
20+
FormsModule,
21+
HttpClientModule
2022
],
2123
declarations: [FeaturesComponent, FeatureRendererComponent],
2224
providers: [FeatureService],
2325
schemas: [CUSTOM_ELEMENTS_SCHEMA]
2426
})
25-
export class FeaturesModule {
26-
}
27+
export class FeaturesModule {}

0 commit comments

Comments
 (0)