diff --git a/api/dto/Question.go b/api/dto/Question.go index cd57f7c..4e33e65 100644 --- a/api/dto/Question.go +++ b/api/dto/Question.go @@ -163,7 +163,7 @@ func (r *QuestionDto) LoadQuestionAnswer(m *model.Question) *QuestionDto { } } } else { - r.QuestionAnswer[0] = m.QuestionAnswer + r.QuestionAnswer = append(r.QuestionAnswer, m.QuestionAnswer) } } return r