From 0a5e1635f1e331ba3d9f43411faba8cd805935d4 Mon Sep 17 00:00:00 2001 From: huang <1724659546@qq.com> Date: Wed, 22 Oct 2025 15:17:44 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/GenericMonitorList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/GenericMonitorList.vue b/src/components/GenericMonitorList.vue index 2f3efbcc..f8d84261 100644 --- a/src/components/GenericMonitorList.vue +++ b/src/components/GenericMonitorList.vue @@ -173,7 +173,7 @@ const loadData = async () => { order: sortOrder.order === 'ascending' ? 'asc' : (sortOrder.order === 'descending' ? 'desc' : undefined), }; - // Custom function to format Date objects to YYYY-MM-DDTHH:mm:ssZ00:00 + // Custom function to format Date objects to YYYY-MM-DDTHH:mm:ssZ const formatToRFC3339WithOffset = (date) => { if (!date) return ''; // Handle null or undefined dates const year = date.getUTCFullYear();