diff --git a/ui/src/components/calendar/EventDate.vue b/ui/src/components/calendar/EventDate.vue index 9c83e59..46d660c 100644 --- a/ui/src/components/calendar/EventDate.vue +++ b/ui/src/components/calendar/EventDate.vue @@ -1,9 +1,18 @@ @@ -23,13 +32,17 @@ export default class EventDate extends Vue { private get month(): string { return this.date.toFormat("MM."); } + + private get time(): string { + return this.date.toLocaleString(DateTime.TIME_24_SIMPLE); + } }