fix: correct local time formatting in OneUptimeDate class

This commit is contained in:
Nawaz Dhandala
2026-04-02 20:59:45 +01:00
parent a54234609f
commit d64194c18e

View File

@@ -1009,7 +1009,7 @@ export default class OneUptimeDate {
}
return (
moment(date).local().format(formatstring) +
moment(date).format(formatstring) +
" " +
(options?.onlyShowDate ? "" : this.getCurrentTimezoneString())
);