From 79eea9ea255d419c94a8377a4915f92c4f1b5a50 Mon Sep 17 00:00:00 2001 From: James Collins Date: Tue, 28 Feb 2023 12:50:46 +1000 Subject: [PATCH] panel should show start time --- resources/js/components/SMPanel.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/components/SMPanel.vue b/resources/js/components/SMPanel.vue index de4f6aa..8e84584 100644 --- a/resources/js/components/SMPanel.vue +++ b/resources/js/components/SMPanel.vue @@ -164,7 +164,7 @@ const computedDate = computed(() => { ); } } else { - str = new SMDate(props.endDate, { format: "yMd" }).format( + str = new SMDate(props.date, { format: "yMd" }).format( "dd/MM/yyyy @ h:mm aa" ); }