File tree 3 files changed +8
-6
lines changed
3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## NEXT VERSION
4
4
5
+ ## v1.13.2 (2022-05-14)
6
+
7
+ - fix: error imported by optimization render task
8
+
5
9
## v1.13.1 (2022-05-14)
6
10
7
11
- fix: optimization render task performance
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-base-table" ,
3
- "version" : " 1.13.1 " ,
3
+ "version" : " 1.13.2 " ,
4
4
"description" : " a react table component to display large data set with high performance and flexibility" ,
5
5
"main" : " lib/index.js" ,
6
6
"module" : " es/index.js" ,
Original file line number Diff line number Diff line change @@ -11,11 +11,9 @@ class TableHeader extends React.PureComponent {
11
11
}
12
12
13
13
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
+ } ) ;
19
17
}
20
18
21
19
renderHeaderRow ( height , index ) {
You can’t perform that action at this time.
0 commit comments