diff --git a/src/views/trials/trials-panel/reading/dicoms/components/NoneDicomsCanvas.vue b/src/views/trials/trials-panel/reading/dicoms/components/NoneDicomsCanvas.vue index 26a39252..b751fdce 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/NoneDicomsCanvas.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/NoneDicomsCanvas.vue @@ -570,7 +570,7 @@ export default { end: { x: e.offsetX, y: e.offsetY } }, remark: this.lesionName, - uuid: `${this.imgId}-${this.lesionName}`, + uuid: `${this.imgId}-${this.lesionName ? this.lesionName : Date.now()}`, toolName: 'ArrowAnnotate', toolType: 'ArrowAnnotate' } @@ -601,7 +601,7 @@ export default { end: { x: e.offsetX, y: e.offsetY } }, remark: this.lesionName, - uuid: `${this.imgId}-${this.lesionName}`, + uuid: `${this.imgId}-${this.lesionName ? this.lesionName : Date.now()}`, toolName: 'RectangleRoi', toolType: 'RectangleRoi' } diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue index fc995333..c147ebc1 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue @@ -1405,7 +1405,7 @@ export default { if (taskIdx === -1) return const annotations = this.visitTaskList[taskIdx].Annotations annotations.map(i => { - if (i.MeasureData) { + if (i.MeasureData && !Object.hasOwn(i.MeasureData, 'isDicomReading')) { const annotation = i.MeasureData annotation.highlighted = false cornerstoneTools.annotation.state.addAnnotation(annotation) diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/Recist/QuestionList.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/Recist/QuestionList.vue index b913e0c5..acaf05d4 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/Recist/QuestionList.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/Recist/QuestionList.vue @@ -8,35 +8,24 @@ {{ visitInfo.TaskBlindName }}
- - + +
- - + +