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 31bbd75f..d7b63a23 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/Segmentations.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/Segmentations.vue @@ -123,7 +123,7 @@ {{ $t('trials:reading:Segmentations:title:InactiveSegmentationsShow') - }} + }}
{{ index + 1 }}
@@ -1559,7 +1559,7 @@ export default { answer = segment.stats && segment.stats[imageToolAttribute] ? Number((segment.stats[imageToolAttribute]).value).toFixed(this.digitPlaces) : '' } let o = { - Answer: answer === '-Infinity' ? null : answer, + Answer: answer === '-Infinity' || answer === 'NaN' ? null : answer, QuestionId: item.QuestionId, RowId: item.RowId, SegmentId: item.SegmentId,