From d64194c18e3fbcf901a1f58dd71a111c97a8558e Mon Sep 17 00:00:00 2001 From: Nawaz Dhandala Date: Thu, 2 Apr 2026 20:59:45 +0100 Subject: [PATCH] fix: correct local time formatting in OneUptimeDate class --- Common/Types/Date.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/Types/Date.ts b/Common/Types/Date.ts index ecf17998eb..58cb9955a8 100644 --- a/Common/Types/Date.ts +++ b/Common/Types/Date.ts @@ -1009,7 +1009,7 @@ export default class OneUptimeDate { } return ( - moment(date).local().format(formatstring) + + moment(date).format(formatstring) + " " + (options?.onlyShowDate ? "" : this.getCurrentTimezoneString()) );