Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lib/table/cell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
CdkCellDef,
CdkColumnDef,
CdkHeaderCell,
CdkHeaderCellDef
CdkHeaderCellDef,
} from '@angular/cdk/table';

/** Workaround for https://github.com/angular/angular/issues/17849 */
Expand Down
2 changes: 1 addition & 1 deletion src/lib/table/row.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
CdkRow,
CDK_ROW_TEMPLATE,
CdkRowDef,
CdkHeaderRowDef
CdkHeaderRowDef,
} from '@angular/cdk/table';

/** Workaround for https://github.com/angular/angular/issues/17849 */
Expand Down
4 changes: 4 additions & 0 deletions tools/dashboard/src/app/dashboard-app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import {Component} from '@angular/core';
import {AngularFireDatabase, FirebaseListObservable} from 'angularfire2/database';

// This import is only used to define a generic type. The current TypeScript version incorrectly
// considers such imports as unused (https://github.com/Microsoft/TypeScript/issues/14953)
// tslint:disable-next-line:no-unused-variable
import {PayloadResult, CoverageResult} from './data-definitions';

@Component({
Expand Down