Added last translations for event forms / data

This commit is contained in:
Alexis
2024-09-08 15:30:10 +02:00
parent 11d900e7f7
commit 63c1cef77e
9 changed files with 49 additions and 34 deletions

View File

@@ -29,7 +29,7 @@ const eventDetails = ref<HTMLElement>()
const emit = defineEmits(["query:close-popover"])
const dateDifference: string = getRelativeString(defaultDate, props.event.startDate)
const dateDifference = computed<string>(() => getRelativeString(defaultDate, props.event.startDate))
const dateDuration = computed<string | null>(() => props.event.endDate ? getRelativeString(props.event.startDate, props.event.endDate, "compact") : null)
function handleJumpToDate(date: RPGDate) {