diff --git a/src/views/trials/trials-panel/reading/dicoms/components/Fusion/Questions.vue b/src/views/trials/trials-panel/reading/dicoms/components/Fusion/Questions.vue index 2a46a734..4c30c1c6 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/Fusion/Questions.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/Fusion/Questions.vue @@ -461,19 +461,12 @@ export default { } FusionEvent.$emit('addOrUpdateAnnotations', { data }) this.questionFormChangeState = true - if (obj.QuestionType === 51) { - if (!this.liverRender) { - this.liverRender = true - } else { - this.setQuestionStatus(this.questions, this.measurements[idx].QuestionType) - } - } - if (obj.QuestionType === 52) { - if (!this.lungRender) { - this.lungRender = true - } else { - this.setQuestionStatus(this.questions, this.measurements[idx].QuestionType) - } + if (obj.QuestionType === 51 && !this.liverRender) { + this.liverRender = true + } else if (obj.QuestionType === 52 && !this.lungRender) { + this.lungRender = true + } else { + this.setQuestionStatus(this.questions, this.measurements[idx].QuestionType) } } },