diff --git a/components/comment/index.jsx b/components/comment/index.jsx index d64d97c60..10d5797aa 100644 --- a/components/comment/index.jsx +++ b/components/comment/index.jsx @@ -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> ); },