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

Commit

Permalink
fix(question): 修复问题详情页回答列表的答案空格被移除的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
mutoe committed Aug 3, 2018
1 parent 9b3f5cb commit 8959c99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/page/question/QuestionListAnswerCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default {
},
body() {
const { body } = this.answer;
return syntaxTextAndImage(body || "").text;
return body || "";
}
},
methods: {
Expand Down

0 comments on commit 8959c99

Please sign in to comment.