This commit is contained in:
lesion 2022-06-22 17:51:56 +02:00
parent e5e4ac46ae
commit 5d4626ee5e
No known key found for this signature in database
GPG key ID: 352918250B012177

View file

@ -64,7 +64,7 @@
v-card-actions
v-spacer
v-btn(@click='done' :loading='loading' :disabled='!valid || loading'
v-btn(@click='done' :loading='loading' :disabled='!valid || loading' outlined
color='primary') {{edit?$t('common.save'):$t('common.send')}}
</template>
@ -173,7 +173,7 @@ export default {
}, 100),
eventImported (event) {
this.event = Object.assign(this.event, event)
this.$refs.where.selectPlace({ name: event.place.name, create: true })
this.$refs.where.selectPlace({ name: event.place.name || event.place, create: true })
this.date = {
recurrent: this.event.recurrent || null,
from: new Date(dayjs.unix(this.event.start_datetime)),