diff --git a/src/Cell/index.tsx b/src/Cell/index.tsx index 5e96915b..618afc86 100644 --- a/src/Cell/index.tsx +++ b/src/Cell/index.tsx @@ -238,6 +238,7 @@ function Cell(props: CellProps) { additionalProps.className, legacyCellProps?.className, ); + const innerCellDivClassName = cls(`${cellPrefixCls}-inner-div`, { [`${cellPrefixCls}-with-append`]: appendNode}); // >>>>> Style const alignStyle: React.CSSProperties = {}; @@ -287,8 +288,10 @@ function Cell(props: CellProps) { colSpan={mergedColSpan !== 1 ? mergedColSpan : null} rowSpan={mergedRowSpan !== 1 ? mergedRowSpan : null} > - {appendNode} - {mergedChildNode} +
+ {appendNode} + {mergedChildNode} +
); }