Merge branch 'master' into dev

This commit is contained in:
lesion
2022-09-22 18:12:19 +02:00
8 changed files with 105 additions and 96 deletions

View File

@@ -9,7 +9,6 @@
@update:from-page='updatePage'
:locale='$i18n.locale'
:attributes='attributes'
:timezone='settings.instance_timezone'
transition='fade'
aria-label='Calendar'
is-expanded

View File

@@ -20,11 +20,11 @@ v-card.h-event.event.d-flex(itemscope itemtype="https://schema.org/Event")
<script>
import { mapState } from 'vuex'
import MyPicture from '~/components/MyPicture'
import { mdiRepeat } from '@mdi/js'
import { mdiRepeat, mdiCalendar, mdiMapMarker } from '@mdi/js'
export default {
data() {
return { mdiRepeat }
return { mdiRepeat, mdiMapMarker, mdiCalendar }
},
components: {
MyPicture