rsuite-table
Advanced tools
Comparing version 3.1.4 to 3.1.5
@@ -0,1 +1,7 @@ | ||
# 3.1.5 | ||
- Bugfix: Column Widths change affects the scroll bar ([#rsuite-224]) | ||
[rsuite-224]: https://github.com/rsuite/rsuite/issues/224 | ||
# 3.1.3 | ||
@@ -2,0 +8,0 @@ |
@@ -413,9 +413,2 @@ 'use strict'; | ||
this.minScrollX = -(contentWidth - this.state.width) - 10; | ||
/** | ||
* 当 content width 更新后,更新横向滚动条 | ||
*/ | ||
if (this.state.contentWidth !== contentWidth) { | ||
this.scrollX = 0; | ||
this.scrollbarX && this.scrollbarX.resetScrollBarPosition(); | ||
} | ||
} | ||
@@ -422,0 +415,0 @@ }, { |
{ | ||
"name": "rsuite-table", | ||
"version": "3.1.4", | ||
"version": "3.1.5", | ||
"description": "A React table component", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -543,9 +543,2 @@ // @flow | ||
this.minScrollX = -(contentWidth - this.state.width) - 10; | ||
/** | ||
* 当 content width 更新后,更新横向滚动条 | ||
*/ | ||
if (this.state.contentWidth !== contentWidth) { | ||
this.scrollX = 0; | ||
this.scrollbarX && this.scrollbarX.resetScrollBarPosition(); | ||
} | ||
} | ||
@@ -552,0 +545,0 @@ |
171819
3783