From dc4620fa12ba3cbf420f6c3f71cd4856a9c5e561 Mon Sep 17 00:00:00 2001 From: Alain Mazy Date: Thu, 19 Dec 2024 15:06:40 +0100 Subject: [PATCH] fix tooltip date format --- WebApplication/src/components/StudyItem.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebApplication/src/components/StudyItem.vue b/WebApplication/src/components/StudyItem.vue index 9235ed3..0cb0949 100644 --- a/WebApplication/src/components/StudyItem.vue +++ b/WebApplication/src/components/StudyItem.vue @@ -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);