Add start time to calendar entries

This commit is contained in:
2025-04-17 12:49:59 +00:00
parent 28c82dc2c3
commit 2f47d4c426
2 changed files with 2 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
{ {
"name": "web-display", "name": "web-display",
"version": "1.0.0", "version": "1.0.0",
"packageManager": "pnpm@10.6.2", "packageManager": "pnpm@10.8.1",
"scripts": { "scripts": {
"dev": "cross-env NODE_OPTIONS='--no-warnings' vite", "dev": "cross-env NODE_OPTIONS='--no-warnings' vite",
"build": "vue-tsc --noEmit && vite build", "build": "vue-tsc --noEmit && vite build",

View File

@@ -83,6 +83,7 @@
:class="{ 'calendar-holiday': calendarEntry.isHoliday }"> :class="{ 'calendar-holiday': calendarEntry.isHoliday }">
<span> <span>
{{ calendarEntry.summary }} {{ calendarEntry.summary }}
<span v-if="!calendarEntry.isAllDay">@ {{ format(calendarEntry.start, 'p') }}</span>
</span> </span>
</ul> </ul>
</div> </div>