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 205d0398..4c9b2d43 100644
--- a/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue
+++ b/src/views/trials/trials-panel/reading/dicoms3D/components/ReadPage.vue
@@ -2990,6 +2990,8 @@ export default {
}
} else if (this.activeTool === FusionJumpToPointTool.toolName) {
this.setFusionMipJumpEnabled(false)
+ } else if (this.activeTool === 'SphericalBrush') {
+ toolGroup.setToolDisabled('ThresholdSphere')
} else {
toolGroup.setToolPassive(this.activeTool)
}
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 71dc8bea..d2f2d82b 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.suvbw / suvFactor.suvlbm : 0,
+ value: suvFactor.suvlbm ? segmentStat.mean.value * suvFactor.suvlbm / suvFactor.suvbw : 0,
}
}
let segmentGroup = this.segmentList.find(item => item.segmentationId === segmentationId)