From 4b51511eb96234aec9bf4a3be091651575750d04 Mon Sep 17 00:00:00 2001 From: lesion Date: Thu, 24 Nov 2022 17:27:38 +0100 Subject: [PATCH] fix tags wrap --- components/Event.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Event.vue b/components/Event.vue index 60f3ba9a..905e34fb 100644 --- a/components/Event.vue +++ b/components/Event.vue @@ -11,7 +11,7 @@ v-card.h-event.event.d-flex(itemscope itemtype="https://schema.org/Event") nuxt-link.place.d-block.p-location.pl-0(text :to='`/place/${encodeURIComponent(event.place.name)}`' itemprop="location" itemscope itemtype="https://schema.org/Place") {{ event.place.name }} .d-none(itemprop='address') {{ event.place.address }} - v-card-actions + v-card-actions.flex-wrap v-chip.ml-1.mt-1(v-for='tag in event.tags.slice(0, 6)' small label :to='`/tag/${encodeURIComponent(tag)}`' :key='tag' outlined color='primary') {{ tag }}