Skip to content

Commit

Permalink
fix(scroll): horizontal scroll with grouped rows (#59)
Browse files Browse the repository at this point in the history
Fixes endless horizontal scroll behaviour when using grouped rows.
  • Loading branch information
chintankavathia authored Jun 26, 2024
1 parent 18b8d90 commit cdef155
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export class DataTableRowWrapperComponent implements DoCheck, OnInit {

styles.transform = 'translate3d(' + this.offsetX + 'px, 0px, 0px)';
styles['backface-visibility'] = 'hidden';
styles.width = this.innerWidth;
styles.width = this.innerWidth + 'px';

return styles;
}
Expand Down

0 comments on commit cdef155

Please sign in to comment.