Skip to content
Snippets Groups Projects
Commit a63daf59 authored by Hangzhi Yu's avatar Hangzhi Yu
Browse files

Beautify custom event details card

parent cf522ca6
No related branches found
No related tags found
1 merge request!1314Resolve "Allow for creation of simple events"
<template>
<base-calendar-feed-details v-bind="$props">
<template #description="{ selectedEvent }">
<v-divider
inset
v-if="selectedEvent.description && !withoutDescription"
/>
<v-list-item v-if="selectedEvent.description && !withoutDescription">
<v-list-item-icon>
<v-icon color="primary">mdi-card-text-outline</v-icon>
</v-list-item-icon>
<v-list-item-content style="white-space: pre-line">
{{ selectedEvent.description }}
</v-list-item-content>
</v-list-item>
<v-divider inset />
<v-list-item v-if="selectedEvent.meta.groups.length">
<v-list-item-icon>
......@@ -34,6 +46,8 @@
</v-list-item-title>
</v-list-item-content>
</v-list-item>
</template>
<template #actions>
<v-divider inset />
<v-card-actions>
<custom-event-dialog
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment