diff --git a/pages/event/_slug.vue b/pages/event/_slug.vue index 902e564c..3f5fc48a 100644 --- a/pages/event/_slug.vue +++ b/pages/event/_slug.vue @@ -38,19 +38,19 @@ v-container#event.pa-0.pa-sm-2 //- online events v-divider(v-if='onlineSectionEnabled && event.locations && event.locations.length') - v-card-text.text-caption.pb-0(v-if='onlineSectionEnabled && event.locations && event.locations.length' - v-text="event.place.name === 'online' && $t('event.event_only_online') || $t('event.event_also_online') ") - v-list-item(target='_blank' :href='`${event.locations[0]}`') - v-list-item-icon - v-icon.my-auto(v-text='mdiMonitorAccount') - v-list-item-content.py-0 - v-list-item-title.text-caption(v-text='`${event.locations[0]}`') - v-card-text.text-caption.pt-0.pb-0(v-if='onlineSectionEnabled && event.locations && event.locations.length > 1' - v-text="$t('event.online_locations_fallback_urls')") - v-list-item(v-if='onlineSectionEnabled && event.locations && event.locations.length > 1') - v-list-item-content - v-chip(v-for='(item, index) in event.locations' v-if="index > 0" target='_blank' :href="`${item}`" - v-bind:key="index" small label v-text="`${item}`" outlined ) + div(v-if='onlineSectionEnabled && event.locations && event.locations.length') + v-card-text.text-caption.pb-0(v-text="event.place.name === 'online' && $t('event.event_only_online') || $t('event.event_also_online') ") + v-list-item(target='_blank' :href='`${event.locations[0]}`') + v-list-item-icon + v-icon.my-auto(v-text='mdiMonitorAccount') + v-list-item-content.py-0 + v-list-item-title.text-caption(v-text='`${event.locations[0]}`') + div(v-if='onlineSectionEnabled && event.locations && event.locations.length > 1') + v-card-text.text-caption.pt-0.pb-0(v-text="$t('event.online_locations_fallback_urls')") + v-list-item + v-list-item-content + v-chip(v-for='(item, index) in event.locations' v-if="index > 0" target='_blank' :href="`${item}`" + v-bind:key="index" small label v-text="`${item}`" outlined ) v-divider //- info & actions