Skip to content

Commit

Permalink
fix PatientName tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
amazy committed Sep 20, 2024
1 parent 9b1d381 commit 38b3450
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions WebApplication/src/components/StudyItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export default {
:class="{ 'text-center': columnTag in ['modalities', 'seriesCount', 'instancesCount', 'seriesAndInstancesCount'] }" data-bs-toggle="collapse"
v-bind:data-bs-target="'#study-details-' + this.studyId">
<span v-if="columnTag == 'StudyDate'" data-bs-toggle="tooltip"
v-bind:title="study.MainDicomTags.StudyDate">{{ formattedStudyDate }}
v-bind:title="formattedStudyDate">{{ formattedStudyDate }}
</span>
<span v-else-if="columnTag == 'AccessionNumber'" data-bs-toggle="tooltip"
v-bind:title="study.MainDicomTags.AccessionNumber">{{ study.MainDicomTags.AccessionNumber }}
Expand All @@ -178,10 +178,10 @@ export default {
v-bind:title="study.PatientMainDicomTags.PatientID">{{ study.PatientMainDicomTags.PatientID }}
</span>
<span v-else-if="columnTag == 'PatientName'" data-bs-toggle="tooltip"
v-bind:title="study.PatientMainDicomTags.PatientName">{{ formattedPatientName }}
v-bind:title="formattedPatientName">{{ formattedPatientName }}
</span>
<span v-else-if="columnTag == 'PatientBirthDate'" data-bs-toggle="tooltip"
v-bind:title="study.PatientMainDicomTags.PatientBirthDate">{{ formattedPatientBirthDate }}
v-bind:title="formattedPatientBirthDate">{{ formattedPatientBirthDate }}
</span>
<span v-else-if="columnTag == 'StudyDescription'" data-bs-toggle="tooltip"
v-bind:title="study.MainDicomTags.StudyDescription">{{ study.MainDicomTags.StudyDescription }}
Expand Down

0 comments on commit 38b3450

Please sign in to comment.