diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/StudyList.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/StudyList.vue index 198ec28d..d0070187 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/StudyList.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/StudyList.vue @@ -193,7 +193,7 @@ export default { methods: { activeSeries(series, seriesIndex, studyIndex) { const photometricInterpretation = series?.InstanceInfoList[0]?.PhotometricInterpretation; - if (!photometricInterpretation || (photometricInterpretation !== 'MONOCHROME1' && photometricInterpretation !== 'MONOCHROME2')) + if ((!photometricInterpretation || (photometricInterpretation !== 'MONOCHROME1' && photometricInterpretation !== 'MONOCHROME2')) && this.readingTool === 3) return this.$confirm(this.$t('trials:histogram:confirm:activeSeriesPhotometricInterpretationNotSupported')) this.$emit('activeSeries', series) this.activeStudyIndex = studyIndex @@ -335,6 +335,7 @@ export default { white-space: normal; overflow: visible; } + .study-meta-line { // display: grid; // grid-template-columns: minmax(0, 1fr) auto; @@ -344,6 +345,7 @@ export default { width: 100%; min-width: 0; } + .study-meta-main { display: block; min-width: 0; @@ -351,11 +353,13 @@ export default { overflow-wrap: anywhere; flex: 1; } + .study-code, .study-modality { white-space: normal; margin: 0 2px; } + .patient-info { display: inline-flex; align-items: center;