diff --git a/resources/assets/vue/components/general/forms/AdminWorkFlowFormComponent.vue b/resources/assets/vue/components/general/forms/AdminWorkFlowFormComponent.vue index a24a819b..d4ee674f 100644 --- a/resources/assets/vue/components/general/forms/AdminWorkFlowFormComponent.vue +++ b/resources/assets/vue/components/general/forms/AdminWorkFlowFormComponent.vue @@ -472,8 +472,10 @@ if(this.question.is_previous && this.question.answer){ this.externalApiResponse = { data: JSON.parse(this.question.answer.question_metadata) }; - this.answer = this.question.answer.answer; - this.answerId = this.question.answer.answer_option_id; + if(this.question.question_type !== 7){ + this.answer = this.question.answer.answer; + this.answerId = this.question.answer.answer_option_id; + } } else { if(this.question && this.question.url){