Skip to content

Commit e881c88

Browse files
committed
actually pass rowHeight
1 parent c5b91be commit e881c88

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
11
# CHANGELOG
22

3+
## 1.0.2
4+
5+
_2024-12-12_
6+
7+
### Bugfix
8+
9+
- `rowHeight` is now respected (again)
10+
311
## 1.0.1
412

13+
_2024-12-12_
14+
515
### Bugfix
616

717
- `rowHeight` is now respected

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-fluid-table",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "A React table inspired by @tanstack/react-virtual",
55
"author": "Mckervin Ceme <mckervinc@live.com>",
66
"license": "MIT",

src/Table.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ const Table = forwardRef(function <T>(
7777
width={width}
7878
height={height}
7979
data={data}
80+
rowHeight={rowHeight}
8081
itemKey={itemKey as any}
8182
onRowClick={onRowClick as any}
8283
rowRenderer={rowRenderer as any}

0 commit comments

Comments
 (0)