Skip to content

Commit

Permalink
fix(guestbook): truncated title
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Dünkelmann <[email protected]>
  • Loading branch information
MartinX3 committed Mar 11, 2023
1 parent 4438629 commit c3cbd02
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/pages/rtc-cologne/CGuestbook.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
<div v-text="`${[props.value.organization, props.value.location].filter((it) => it).join(', ')} `" />
<div v-if="!isCategoryRTC" v-text="`Event: ${EEvent[props.value.category]}`" />
</v-card-subtitle>
<v-toolbar v-if="props.value.title" color="primary" flat>
<v-toolbar-title class="accent--text">{{ props.value.title }}</v-toolbar-title>
</v-toolbar>
<v-card-title v-if="props.value.title" class="accent--text primary">{{ props.value.title }}</v-card-title>
<!-- TODO style="padding: 16px" IS A WORKAROUND FOR https://github.com/vuetifyjs/vuetify/issues/12170 -->
<v-card-text v-if="props.value.text || props.value.imageUrls?.length" style="padding: 16px">
<div v-if="props.value.text">
Expand Down

0 comments on commit c3cbd02

Please sign in to comment.