File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
projects/igniteui-angular/src/lib/grids Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -6500,12 +6500,10 @@ export abstract class IgxGridBaseDirective extends DisplayDensityBase implements
6500
6500
this . tbody . nativeElement . style . display = 'none' ;
6501
6501
let res = ! this . nativeElement . parentElement ||
6502
6502
this . nativeElement . parentElement . clientHeight === 0 ||
6503
- this . nativeElement . parentElement . clientHeight === renderedHeight ;
6504
- if ( ! this . platform . isChromium && ! this . platform . isFirefox ) {
6503
+ this . nativeElement . parentElement . clientHeight === renderedHeight ||
6505
6504
// If grid causes the parent container to extend (for example when container is flex)
6506
6505
// we should always auto-size since the actual size of the container will continuously change as the grid renders elements.
6507
- res = this . checkContainerSizeChange ( ) ;
6508
- }
6506
+ this . checkContainerSizeChange ( ) ;
6509
6507
this . tbody . nativeElement . style . display = '' ;
6510
6508
return res ;
6511
6509
}
You can’t perform that action at this time.
0 commit comments