File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -238,6 +238,7 @@ function Cell<RecordType>(props: CellProps<RecordType>) {
238
238
additionalProps . className ,
239
239
legacyCellProps ?. className ,
240
240
) ;
241
+ const innerCellDivClassName = cls ( `${ cellPrefixCls } -inner-div` , { [ `${ cellPrefixCls } -with-append` ] : appendNode } ) ;
241
242
242
243
// >>>>> Style
243
244
const alignStyle : React . CSSProperties = { } ;
@@ -287,8 +288,10 @@ function Cell<RecordType>(props: CellProps<RecordType>) {
287
288
colSpan = { mergedColSpan !== 1 ? mergedColSpan : null }
288
289
rowSpan = { mergedRowSpan !== 1 ? mergedRowSpan : null }
289
290
>
290
- { appendNode }
291
- { mergedChildNode }
291
+ < div className = { innerCellDivClassName } >
292
+ { appendNode }
293
+ { mergedChildNode }
294
+ </ div >
292
295
</ Component >
293
296
) ;
294
297
}
You can’t perform that action at this time.
0 commit comments