diff --git a/src/tools/device-information/device-information.vue b/src/tools/device-information/device-information.vue index d5e5d2ac..10513ea5 100644 --- a/src/tools/device-information/device-information.vue +++ b/src/tools/device-information/device-information.vue @@ -54,6 +54,19 @@ const sections = [ }, ], }, + { + name: 'Time zone', + information: [ + { + label: 'Time zone name', + value: computed(() => Intl.DateTimeFormat().resolvedOptions().timeZone), + }, + { + label: 'UTC offset', + value: computed(() => `${new Date().getTimezoneOffset()} minutes`), + }, + ], + }, ];