Compare commits

...

2 commits

Author SHA1 Message Date
Maurizio Basaglia
b414c1add4
Merge d715376317 into 63fbd3b45c 2024-12-12 20:51:41 +01:00
Maurizio Basaglia
d715376317
Update device-information.vue 2024-11-09 11:39:08 +01:00

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>