Add UTC in the serverTimezone dropdown

This commit is contained in:
Louis Lam
2022-10-12 22:13:07 +08:00
parent 2faf866e9e
commit edacff123b
4 changed files with 3 additions and 5 deletions

View File

@@ -26,6 +26,7 @@
{{ $t("Server Timezone") }}
</label>
<select id="timezone" v-model="settings.serverTimezone" class="form-select">
<option value="UTC">UTC</option>
<option
v-for="(timezone, index) in timezoneList"
:key="index"

View File

@@ -9,7 +9,6 @@
import * as dayjs from "dayjs";
import * as timezone from "dayjs/plugin/timezone";
import * as utc from "dayjs/plugin/utc";
import {R} from "redbean-node";
export const isDev = process.env.NODE_ENV === "development";
export const appName = "Uptime Kuma";