diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/Segmentations.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/Segmentations.vue
index d2f2d82b..bffa9fb0 100644
--- a/src/views/trials/trials-panel/reading/dicoms3D/components/Segmentations.vue
+++ b/src/views/trials/trials-panel/reading/dicoms3D/components/Segmentations.vue
@@ -143,7 +143,7 @@
{{
$t('trials:reading:Segmentations:title:InactiveSegmentationsShow')
- }}
+ }}
@@ -326,7 +326,7 @@
{{
$t('trials:reading:Segmentations:button:recovery')
- }}
+ }}
@@ -1612,7 +1612,7 @@ export default {
label: "Mean Pixel",
name: "sulpeak",
unit: "SUL",
- value: suvFactor.suvlbm ? segmentStat.mean.value * suvFactor.suvlbm / suvFactor.suvbw : 0,
+ value: suvFactor.suvlbm && suvFactor.suvbw ? segmentStat.mean.value * suvFactor.suvlbm / suvFactor.suvbw : 0,
}
}
let segmentGroup = this.segmentList.find(item => item.segmentationId === segmentationId)