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