Michael Wang 6 лет назад
Родитель
Сommit
2f3429e84f
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/features/OnlineExam/Examing/TextQuestionView.vue

+ 1 - 1
src/features/OnlineExam/Examing/TextQuestionView.vue

@@ -39,7 +39,7 @@ export default {
     },
     studentAnswer() {
       let realAnswer = null;
-      if (this.studentAnswer || this.studentAnswer.trim()) {
+      if (this.studentAnswer) {
         // 如果有实际内容
         realAnswer = this.studentAnswer;
       }