File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 4
4
# dependencies
5
5
node_modules
6
6
7
+ # publish
8
+ .npmrc
9
+
7
10
# builds
8
11
build
9
12
dist
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-fluid-table" ,
3
- "version" : " 1.2.5 " ,
3
+ "version" : " 1.2.6 " ,
4
4
"description" : " A React table inspired by @tanstack/react-virtual" ,
5
5
"author" : " Mckervin Ceme <mckervinc@live.com>" ,
6
6
"license" : " MIT" ,
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ function BaseList<T>(
75
75
} ) ;
76
76
77
77
// constants
78
- const isScrollHorizontal = ( innerRef . current ?. scrollWidth || 0 ) + 16 > innerWidth ;
78
+ const isScrollHorizontal = ( innerRef . current ?. scrollWidth || 0 ) > innerWidth + 16 ;
79
79
const items = virtualizer . getVirtualItems ( ) ;
80
80
const { fixedWidth, remainingCols } = widthConstants ;
81
81
You can’t perform that action at this time.
0 commit comments