mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-10 04:30:25 +02:00
fix overflow on table header
This commit is contained in:
@@ -304,6 +304,7 @@ const VirtualizedTableGrid = React.memo(
|
||||
{ length: pinnedRowCount },
|
||||
() => 0,
|
||||
).reduce((a, _, i) => a + getRowHeight(i, itemProps), 0)}px`,
|
||||
overflow: 'hidden',
|
||||
}}
|
||||
>
|
||||
<Grid
|
||||
@@ -351,6 +352,7 @@ const VirtualizedTableGrid = React.memo(
|
||||
{ length: pinnedRowCount },
|
||||
() => 0,
|
||||
).reduce((a, _, i) => a + getRowHeight(i, itemProps), 0)}px`,
|
||||
overflow: 'hidden',
|
||||
} as React.CSSProperties
|
||||
}
|
||||
>
|
||||
@@ -415,6 +417,7 @@ const VirtualizedTableGrid = React.memo(
|
||||
{ length: pinnedRowCount },
|
||||
() => 0,
|
||||
).reduce((a, _, i) => a + getRowHeight(i, itemProps), 0)}px`,
|
||||
overflow: 'hidden',
|
||||
}}
|
||||
>
|
||||
<Grid
|
||||
|
||||
Reference in New Issue
Block a user