Skip to content

Commit

Permalink
fix(table): Fix change det issue with http example (#6169)
Browse files Browse the repository at this point in the history
* fix(table): Fix change det issue with http example

* Update table-http-example.ts
  • Loading branch information
andrewseguin authored and tinayuangao committed Aug 1, 2017
1 parent 51eca3b commit 4afcc0a
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
Expand Up @@ -68,8 +68,8 @@ export class ExampleHttpDao {
export class ExampleDataSource extends DataSource<GithubIssue> {
// The number of issues returned by github matching the query.
resultsLength = 0;
isLoadingResults: boolean;
isRateLimitReached: boolean;
isLoadingResults = false;
isRateLimitReached = false;

constructor(private exampleDatabase: ExampleHttpDao,
private paginator: MdPaginator,
Expand Down

0 comments on commit 4afcc0a

Please sign in to comment.