Skip to content

Commit 3a4e7bc

Browse files
authored
Merge pull request #9743 from IgniteUI/vmihalkov/fix-9632
Allow IgxForOf directive input to be null
2 parents 79f4428 + b4fbd09 commit 3a4e7bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/directives/for-of/for_of.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export class IgxForOfDirective<T> implements OnInit, OnChanges, DoCheck, OnDestr
9292
* ```
9393
*/
9494
@Input()
95-
public igxForOf: any[];
95+
public igxForOf: any[] | null;
9696

9797
/**
9898
* An @Input property that sets the property name from which to read the size in the data object.

0 commit comments

Comments
 (0)