From a8984bcf13dbd63fc83b28b41744d3a263ead88f Mon Sep 17 00:00:00 2001 From: crisbeto Date: Tue, 19 Dec 2017 18:36:46 +0100 Subject: [PATCH] fix(datepicker): typo in MatMonthView export Fixes the `exportAs` of the `MatMonthView` being spelled as `matMonthVeiw`. --- src/lib/datepicker/month-view.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/datepicker/month-view.ts b/src/lib/datepicker/month-view.ts index d1412717e5fd..cd35b7649374 100644 --- a/src/lib/datepicker/month-view.ts +++ b/src/lib/datepicker/month-view.ts @@ -34,7 +34,7 @@ const DAYS_PER_WEEK = 7; moduleId: module.id, selector: 'mat-month-view', templateUrl: 'month-view.html', - exportAs: 'matMonthVeiw', + exportAs: 'matMonthView', encapsulation: ViewEncapsulation.None, preserveWhitespaces: false, changeDetection: ChangeDetectionStrategy.OnPush,