From e1f5828a230344e82ccddcebe96139f08a4b0ece Mon Sep 17 00:00:00 2001 From: crisbeto Date: Fri, 20 Oct 2017 22:42:28 +0200 Subject: [PATCH] chore: re-enable prerender checks for all components Re-enables the prerender checks for the checkbox and button toggle modules since the issue that was breaking them initially has been resolved. --- src/universal-app/kitchen-sink/kitchen-sink.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/universal-app/kitchen-sink/kitchen-sink.ts b/src/universal-app/kitchen-sink/kitchen-sink.ts index d74d43915bab..63f16c1ada0e 100644 --- a/src/universal-app/kitchen-sink/kitchen-sink.ts +++ b/src/universal-app/kitchen-sink/kitchen-sink.ts @@ -5,7 +5,9 @@ import {Observable} from 'rxjs/Observable'; import { MatAutocompleteModule, MatButtonModule, + MatButtonToggleModule, MatCardModule, + MatCheckboxModule, MatChipsModule, MatDatepickerModule, MatDialogModule, @@ -68,10 +70,9 @@ export class KitchenSink { BrowserModule.withServerTransition({appId: 'kitchen-sink'}), MatAutocompleteModule, MatButtonModule, - // Button toggle and checkbox can't work due to https://github.com/angular/angular/issues/17050 - // MatButtonToggleModule, + MatButtonToggleModule, MatCardModule, - // MatCheckboxModule, + MatCheckboxModule, MatChipsModule, MatDatepickerModule, MatDialogModule,