File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
react/components/EXPERIMENTAL_Table/Sections Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
9
9
10
10
### Fixed
11
11
12
- - PageBlock responsiveness issue on aside variation.
12
+ - ** PageBlock** responsiveness issue on aside variation.
13
+ - ** EXPERIMENTAL_TableV2** rows height when using ` disableScroll ` .
13
14
14
15
## [ 9.135.1] - 2021-01-28
15
16
Original file line number Diff line number Diff line change @@ -32,9 +32,9 @@ function Sections(
32
32
33
33
return (
34
34
< div
35
- style = { { height : tableHeight , ...motion } }
36
- className = { classNames ( 'mw-100' , ORDER_CLASSNAMES . TABLE , {
37
- 'overflow-x-auto overflow- y-auto overflow-hidden ' : ! disableScroll ,
35
+ style = { { height : disableScroll ? 'auto' : tableHeight , ...motion } }
36
+ className = { classNames ( 'mw-100 overflow-x-auto ' , ORDER_CLASSNAMES . TABLE , {
37
+ 'overflow-y-auto' : ! disableScroll ,
38
38
} ) } >
39
39
< table
40
40
ref = { ref }
You can’t perform that action at this time.
0 commit comments