diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionFormItem.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionFormItem.vue index 830f44b1..8b6b0740 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionFormItem.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionFormItem.vue @@ -1369,7 +1369,7 @@ export default { } else if (prop === 'length' || prop === 'perimeter') { value = this.reRound(csUtils.roundNumber(value * ps), this.digitPlaces) } else { - value = this.reRound(csUtils.roundNumber(value), this.digitPlaces) + value = this.reRound(csUtils.roundNumber(value * ps), this.digitPlaces) } } else if (this.isNoneDicom && value !== null) { value = this.reRound(csUtils.roundNumber(value), this.digitPlaces) diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionList.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionList.vue index 0f12415a..4ea41cab 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionList.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionList.vue @@ -1061,7 +1061,7 @@ export default { } else if (prop === 'length' || prop === 'perimeter') { value = this.reRound(csUtils.roundNumber(value * ps), this.digitPlaces) } else { - value = this.reRound(csUtils.roundNumber(value), this.digitPlaces) + value = this.reRound(csUtils.roundNumber(value * ps), this.digitPlaces) } } else if (this.isNoneDicom && value !== null) { value = this.reRound(csUtils.roundNumber(value), this.digitPlaces)