From 52a02ba1b40bef3893c8b9523f7ed738218584b7 Mon Sep 17 00:00:00 2001 From: Andrew Seguin Date: Mon, 11 Dec 2017 15:11:56 -0800 Subject: [PATCH] fix(table): http example needs httpclientmodule --- src/assets/stackblitz/main.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/assets/stackblitz/main.ts b/src/assets/stackblitz/main.ts index eb7ef4039..5f3177d8e 100644 --- a/src/assets/stackblitz/main.ts +++ b/src/assets/stackblitz/main.ts @@ -39,6 +39,7 @@ import { } from '@angular/material'; import {MaterialDocsExample} from './app/material-docs-example'; import {HttpModule} from '@angular/http'; +import {HttpClientModule} from '@angular/common/http'; import {CdkTableModule} from '@angular/cdk/table'; @NgModule({ @@ -86,6 +87,7 @@ export class DemoMaterialModule {} BrowserAnimationsModule, FormsModule, HttpModule, + HttpClientModule, DemoMaterialModule, MatNativeDateModule, ReactiveFormsModule,