mirror of
https://framagit.org/les/gancio.git
synced 2025-02-01 00:52:01 +01:00
minor
This commit is contained in:
parent
c87f479945
commit
22ca0f28be
1 changed files with 4 additions and 4 deletions
|
@ -35,8 +35,8 @@ v-container#event.pa-0.pa-sm-2
|
||||||
|
|
||||||
.text-h6.p-location
|
.text-h6.p-location
|
||||||
v-icon mdi-map-marker
|
v-icon mdi-map-marker
|
||||||
b.vcard.ml-2 {{event.place.name}}
|
b.vcard.ml-2 {{event.place && event.place.name}}
|
||||||
.text-subtitle-1.adr {{event.place.address}}
|
.text-subtitle-1.adr {{event.place && event.place.address}}
|
||||||
|
|
||||||
//- tags, hashtags
|
//- tags, hashtags
|
||||||
v-card-text(v-if='event.tags.length')
|
v-card-text(v-if='event.tags.length')
|
||||||
|
@ -171,8 +171,8 @@ export default {
|
||||||
const place_feed = {
|
const place_feed = {
|
||||||
rel: 'alternate',
|
rel: 'alternate',
|
||||||
type: 'application/rss+xml',
|
type: 'application/rss+xml',
|
||||||
title: `${this.settings.title} events @${this.event.place.name}`,
|
title: `${this.settings.title} events @${this.event.place && this.event.place.name}`,
|
||||||
href: this.settings.baseurl + `/feed/rss?places=${this.event.place.id}`
|
href: this.settings.baseurl + `/feed/rss?places=${this.event.place && this.event.place.id}`
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in a new issue