Skip to content

Commit af69c00

Browse files
committed
feat: add additional container div to support shadow style
1 parent 9b6365e commit af69c00

File tree

4 files changed

+2036
-1980
lines changed

4 files changed

+2036
-1980
lines changed

src/Table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ function Table<RecordType extends DefaultRecordType>(props: TableProps<RecordTyp
498498
{...ariaProps}
499499
>
500500
{title && <Panel className={`${prefixCls}-title`}>{title(mergedData)}</Panel>}
501-
{groupTableNode}
501+
<div className={`${prefixCls}-container`}>{groupTableNode}</div>
502502
{footer && <Panel className={`${prefixCls}-footer`}>{footer(mergedData)}</Panel>}
503503
</div>
504504
);

0 commit comments

Comments
 (0)