File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 22
33## NEXT VERSION
44
5+ ## v1.13.2 (2022-05-14)
6+
7+ - fix: error imported by optimization render task
8+
59## v1.13.1 (2022-05-14)
610
711- fix: optimization render task performance
Original file line number Diff line number Diff line change 11{
22 "name" : " react-base-table" ,
3- "version" : " 1.13.1 " ,
3+ "version" : " 1.13.2 " ,
44 "description" : " a react table component to display large data set with high performance and flexibility" ,
55 "main" : " lib/index.js" ,
66 "module" : " es/index.js" ,
Original file line number Diff line number Diff line change @@ -11,11 +11,9 @@ class TableHeader extends React.PureComponent {
1111 }
1212
1313 scrollTo ( offset ) {
14- if ( this . headerRef ) {
15- requestAnimationFrame ( ( ) => {
16- this . headerRef . scrollLeft = offset ;
17- } ) ;
18- }
14+ requestAnimationFrame ( ( ) => {
15+ if ( this . headerRef ) this . headerRef . scrollLeft = offset ;
16+ } ) ;
1917 }
2018
2119 renderHeaderRow ( height , index ) {
You can’t perform that action at this time.
0 commit comments