From cbf301b1a818b05d25d9cc1d66020cd16e0e7812 Mon Sep 17 00:00:00 2001 From: swftvsn Date: Fri, 30 Jun 2017 13:29:47 +0300 Subject: [PATCH] Fix typo which caused CdkHeaderRow to be used instead of CdkRow --- src/lib/table/row.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/table/row.ts b/src/lib/table/row.ts index 9a43a49e6da5..2cdc17c9079c 100644 --- a/src/lib/table/row.ts +++ b/src/lib/table/row.ts @@ -11,7 +11,7 @@ import {CdkHeaderRow, CdkRow, CDK_ROW_TEMPLATE} from '@angular/cdk'; /** Workaround for https://github.com/angular/angular/issues/17849 */ export const _MdHeaderRow = CdkHeaderRow; -export const _MdRow = CdkHeaderRow; +export const _MdRow = CdkRow; /** Header template container that contains the cell outlet. Adds the right class and role. */ @Component({