list'a title default to site name

This commit is contained in:
lesion
2022-01-31 13:14:53 +01:00
parent 70c0a312dc
commit a00b0e2f2d

View File

@@ -96,11 +96,11 @@ export default {
})
return { events }
},
data () {
data ({ $store }) {
return {
type: 'rss',
notification: { email: '' },
list: { title: 'Gancio', maxEvents: null, theme: 'dark' },
list: { title: $store.state.settings.title, maxEvents: null, theme: 'dark' },
filters: { tags: [], places: [], show_recurrent: false },
events: []
}