Skip to content
This repository has been archived by the owner on Nov 15, 2018. It is now read-only.

Commit

Permalink
fix(message): 头像资源修正 x4
Browse files Browse the repository at this point in the history
  • Loading branch information
mutoe committed Sep 29, 2018
1 parent b853d2d commit 8d1d55c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/page/message/components/auditContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ export default {
}),
computed: {
image() {
return this.audit.image;
const avatar = this.audit.image || {};
return avatar.url || null;
},
commentBody() {
return this.audit.commentBody || "";
Expand Down

0 comments on commit 8d1d55c

Please sign in to comment.