status timezone sync

This commit is contained in:
Tim
2024-04-23 22:16:01 -04:00
parent e74c7320a0
commit b681fb5324
6 changed files with 34 additions and 27 deletions

View File

@@ -23,7 +23,7 @@ const emit = defineEmits(['update:modelValue'])
const hideDetails = true
const now = computed(()=>DateTime.fromMillis(1000*props.modelValue).setZone(s.timeZone))
const now = computed(()=>DateTime.fromSeconds(props.modelValue).setZone(s.timeZone))
const year = computed({
get() { return now.value.year },