Skip to content

Commit f5dd5bb

Browse files
authored
fix: table crash on setting scroll (#374)
The table heade ref may be undefined on the requestAnimationFrame call E.g. Uncaught TypeError: Cannot set properties of null (setting 'scrollLeft')
1 parent ff83343 commit f5dd5bb

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

src/TableHeader.js

+3-5
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)