Skip to content

Commit

Permalink
fix: 问答详情页用户头像问题
Browse files Browse the repository at this point in the history
  • Loading branch information
waiterxiaoyy committed Nov 18, 2024
1 parent af16f68 commit 82bd842
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/editor/src/pages/feedback/IssueDetail/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ export default function IssueDetail() {
itemDetail.userAvatar ? (
<Avatar src={itemDetail.userAvatar} size={40} className={styles.avatar} />
) : (
<RandomAvatar size={40} className={styles.avatar} seed={itemDetail.userId + ''} />
<RandomAvatar size={40} className={styles.avatar} seed={itemDetail.nickName
+ ''} />
)
}
</div>
Expand Down

0 comments on commit 82bd842

Please sign in to comment.