Skip to content

Commit

Permalink
fix tooltip date format
Browse files Browse the repository at this point in the history
  • Loading branch information
amazy committed Dec 19, 2024
1 parent 0b0d877 commit dc4620f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WebApplication/src/components/StudyItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default {
if (instance.RequestedTags.SOPClassUID == "1.2.840.10008.5.1.4.1.1.104.1") {
let titles = [];
if (instance.RequestedTags.SeriesDate) {
titles.push(dateHelpers.formatDateForDisplay(instance.RequestedTags.SeriesDate));
titles.push(dateHelpers.formatDateForDisplay(instance.RequestedTags.SeriesDate, this.uiOptions.DateFormat));
}
if (instance.RequestedTags.SeriesDescription) {
titles.push(instance.RequestedTags.SeriesDescription);
Expand Down

0 comments on commit dc4620f

Please sign in to comment.