We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a84cff8 commit a044c15Copy full SHA for a044c15
projects/igniteui-angular/src/lib/directives/for-of/for_of.directive.ts
@@ -1638,7 +1638,7 @@ export class IgxGridForOfDirective<T> extends IgxForOfDirective<T> implements On
1638
const count = this.isRemote ? this.totalItemCount : items.length;
1639
for (i; i < count; i++) {
1640
size = this.getItemSize(items[i]);
1641
- if (this.itemsDimension === 'height') {
+ if (this.igxForScrollOrientation === 'vertical') {
1642
this.heightCache.push(size);
1643
}
1644
totalSize += size;
0 commit comments