fix: comment empty children
parent
1e35976bd1
commit
3a13c60d59
|
@ -85,7 +85,7 @@ const Comment = {
|
||||||
return (
|
return (
|
||||||
<div class={prefixCls}>
|
<div class={prefixCls}>
|
||||||
{comment}
|
{comment}
|
||||||
{children ? this.renderNested(prefixCls, children) : null}
|
{children && children.length ? this.renderNested(prefixCls, children) : null}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue