Fix bugs with 0.10.0, update changelog

This commit is contained in:
Prospector
2025-07-05 11:33:21 -07:00
parent 0030f35d0c
commit ece8a07486
7 changed files with 37 additions and 13 deletions

View File

@@ -172,7 +172,10 @@ onUnmounted(() => unlisten())
<div class="flex items-center col-span-3 gap-1 text-secondary font-semibold">
<TimerIcon />
<span class="text-sm">
Played {{ formatRelativeTime(dayjs(instance.last_played).toISOString()) }}
<template v-if="instance.last_played">
Played {{ formatRelativeTime(dayjs(instance.last_played).toISOString()) }}
</template>
<template v-else> Never played </template>
</span>
</div>
</div>