Skip to content

Commit

Permalink
chore: lint error (#8086)
Browse files Browse the repository at this point in the history
Fixes a linting error in the docs
  • Loading branch information
crisbeto authored and mmalerba committed Oct 27, 2017
1 parent b3a493c commit 97447f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/material-examples/table-http/table-http-example.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Component, OnInit, ViewChild} from '@angular/core';
import {Component, AfterViewInit, ViewChild} from '@angular/core';
import {HttpClient} from '@angular/common/http';
import {MatPaginator, MatSort, MatTableDataSource} from '@angular/material';
import {Observable} from 'rxjs/Observable';
Expand All @@ -17,7 +17,7 @@ import 'rxjs/add/operator/switchMap';
styleUrls: ['table-http-example.css'],
templateUrl: 'table-http-example.html',
})
export class TableHttpExample {
export class TableHttpExample implements AfterViewInit {
displayedColumns = ['created', 'state', 'number', 'title'];
exampleDatabase: ExampleHttpDao | null;
dataSource = new MatTableDataSource();
Expand Down

0 comments on commit 97447f9

Please sign in to comment.