This commit is contained in:
Maurizio Basaglia 2024-12-16 15:15:31 -05:00 committed by GitHub
commit 95ab7d1cff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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`),
},
],
},
];
</script>