Skip to content

Commit 4afcc0a

Browse files
andrewseguintinayuangao
authored andcommitted
fix(table): Fix change det issue with http example (#6169)
* fix(table): Fix change det issue with http example * Update table-http-example.ts
1 parent 51eca3b commit 4afcc0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/material-examples/table-http/table-http-example.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ export class ExampleHttpDao {
6868
export class ExampleDataSource extends DataSource<GithubIssue> {
6969
// The number of issues returned by github matching the query.
7070
resultsLength = 0;
71-
isLoadingResults: boolean;
72-
isRateLimitReached: boolean;
71+
isLoadingResults = false;
72+
isRateLimitReached = false;
7373

7474
constructor(private exampleDatabase: ExampleHttpDao,
7575
private paginator: MdPaginator,

0 commit comments

Comments
 (0)