提交 603dcb0d 作者: ZhangLingKun

Merge branch 'master' into develop

流水线 #8481 已通过 于阶段
in 1 分 2 秒
...@@ -14,4 +14,4 @@ patches: ...@@ -14,4 +14,4 @@ patches:
images: images:
- name: REGISTRY/NAMESPACE/IMAGE:TAG - name: REGISTRY/NAMESPACE/IMAGE:TAG
newName: mmc-registry.cn-shenzhen.cr.aliyuncs.com/sharefly/admin newName: mmc-registry.cn-shenzhen.cr.aliyuncs.com/sharefly/admin
newTag: 3393fb1b0d84e11d77741ef6fbab6cecdcbe5065 newTag: cc1ebccedbfcd03220d7ae2615af87e5a3d9ce04
...@@ -64,9 +64,9 @@ const DynamicDetailModal: FC<ModalProps & selfProps> = ({ open, onCancel, forumD ...@@ -64,9 +64,9 @@ const DynamicDetailModal: FC<ModalProps & selfProps> = ({ open, onCancel, forumD
<Tooltip <Tooltip
placement='bottom' placement='bottom'
title={ title={
likeUserList.length ? ( likeUserList?.length ? (
<div className='dynamic-like-user'> <div className='dynamic-like-user'>
{likeUserList.map((v, index: number) => ( {likeUserList?.map((v, index: number) => (
<div key={index} className='user-info'> <div key={index} className='user-info'>
<img src={v.userImg} alt='头像' /> <img src={v.userImg} alt='头像' />
<span>{v.userName || v.nickName}</span> <span>{v.userName || v.nickName}</span>
...@@ -83,7 +83,7 @@ const DynamicDetailModal: FC<ModalProps & selfProps> = ({ open, onCancel, forumD ...@@ -83,7 +83,7 @@ const DynamicDetailModal: FC<ModalProps & selfProps> = ({ open, onCancel, forumD
</div> </div>
</div> </div>
</div> </div>
{forumDetail?.commentAndReplyVO.length ? ( {forumDetail?.commentAndReplyVO?.length ? (
<div className='dynamic-detail-comment'> <div className='dynamic-detail-comment'>
<div className='comment-title'>{forumDetail?.commentCount}条评论</div> <div className='comment-title'>{forumDetail?.commentCount}条评论</div>
{forumDetail.commentAndReplyVO.map((v, index: number) => ( {forumDetail.commentAndReplyVO.map((v, index: number) => (
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论