Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 780967d

Browse files
committedMar 16, 2017
fix(list-view-comp): IterableDiffer is now parameterized on <KeyedTemplate>
1 parent edff964 commit 780967d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎nativescript-angular/directives/list-view-comp.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export class ListViewComponent implements DoCheck, OnDestroy, AfterContentInit {
6262

6363
private listView: ListView;
6464
private _items: any;
65-
private _differ: IterableDiffer;
65+
private _differ: IterableDiffer<KeyedTemplate>;
6666
private _templateMap: Map<string, KeyedTemplate>;
6767

6868
@ViewChild("loader", { read: ViewContainerRef }) loader: ViewContainerRef;

0 commit comments

Comments
 (0)
Please sign in to comment.