We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c19adf commit 719d285Copy full SHA for 719d285
src/Body/ExpandedRow.tsx
@@ -40,7 +40,7 @@ function ExpandedRow(props: ExpandedRowProps) {
40
// Cache render node
41
let contentNode = children;
42
43
- if (isEmpty ? horizonScroll : fixColumn) {
+ if (isEmpty ? horizonScroll && componentWidth : fixColumn) {
44
contentNode = (
45
<div
46
style={{
@@ -51,7 +51,7 @@ function ExpandedRow(props: ExpandedRowProps) {
51
}}
52
className={`${prefixCls}-expanded-row-fixed`}
53
>
54
- {componentWidth !== 0 && contentNode}
+ {contentNode}
55
</div>
56
);
57
}
0 commit comments