From 8b3278b60f8a2e51519adb0e21549f8271069c12 Mon Sep 17 00:00:00 2001 From: Thomas Citharel <tcit@tcit.fr> Date: Wed, 6 Apr 2022 18:16:14 +0200 Subject: [PATCH] Fix display of contacts on event view Signed-off-by: Thomas Citharel <tcit@tcit.fr> --- js/src/components/Account/ActorCard.vue | 4 ++-- js/src/components/Event/EventMetadataSidebar.vue | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/js/src/components/Account/ActorCard.vue b/js/src/components/Account/ActorCard.vue index f88aa83e4..448ca385c 100644 --- a/js/src/components/Account/ActorCard.vue +++ b/js/src/components/Account/ActorCard.vue @@ -1,7 +1,7 @@ <template> <div - class="bg-white rounded-lg shadow-md flex space-x-4 items-center" - :class="{ 'flex-col p-4 sm:p-8 pb-10 w-80': !inline }" + class="bg-white rounded-lg flex space-x-4 items-center" + :class="{ 'flex-col p-4 shadow-md sm:p-8 pb-10 w-80': !inline }" > <div> <figure class="w-12 h-12" v-if="actor.avatar"> diff --git a/js/src/components/Event/EventMetadataSidebar.vue b/js/src/components/Event/EventMetadataSidebar.vue index 4be62d7d7..574a0a947 100644 --- a/js/src/components/Event/EventMetadataSidebar.vue +++ b/js/src/components/Event/EventMetadataSidebar.vue @@ -36,6 +36,7 @@ > <router-link v-if="event.attributedTo" + class="hover:underline" :to="{ name: RouteName.GROUP, params: { @@ -53,6 +54,7 @@ </router-link> <actor-card v-else :actor="event.organizerActor" :inline="true" /> <actor-card + :inline="true" :actor="contact" v-for="contact in event.contacts" :key="contact.id"