Skip to content

Commit 6fff957

Browse files
authored
fix: should pass colGroup (#1356)
* test: update test snap * update
1 parent 696680c commit 6fff957

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/FixedHolder/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,9 @@ const FixedHolder = React.forwardRef<HTMLDivElement, FixedHeaderProps<any>>((pro
164164
width: scrollX,
165165
}}
166166
>
167-
{isColGroupEmpty ? null : (
167+
{isColGroupEmpty ? (
168+
colGroup
169+
) : (
168170
<ColGroup
169171
colWidths={[...mergedColumnWidth, combinationScrollBarSize]}
170172
columCount={columCount + 1}

0 commit comments

Comments
 (0)