{{ $t('calendar', 'We sent you an email with details. Please confirm your appointment using the link in the email. You can close this page now.') }}
diff --git a/src/components/CalendarGrid.vue b/src/components/CalendarGrid.vue
index 8cda1220296d52eb36e8c59210c083c3cd88c72b..dfc6265f60fdeb7d29e8cbc0804f85ef27a3e301 100644
--- a/src/components/CalendarGrid.vue
+++ b/src/components/CalendarGrid.vue
@@ -130,7 +130,8 @@ export default {
dayHeaderDidMount,
eventDidMount,
noEventsDidMount,
- eventOrder: ['start', '-duration', 'allDay', eventOrder],
+ // FIXME: remove title if upstream is fixed (https://github.com/fullcalendar/fullcalendar/issues/6608#issuecomment-954241059)
+ eventOrder: ['title', 'start', '-duration', 'allDay', eventOrder],
forceEventDuration: false,
headerToolbar: false,
height: '100%',
diff --git a/src/components/Editor/Invitees/InviteesListItem.vue b/src/components/Editor/Invitees/InviteesListItem.vue
index 3c02ce0e82c5aaf0f0e85ffd0b57f1a04c9067ca..cac222baecfe7b5b8f843bdffa0081111925ee8e 100644
--- a/src/components/Editor/Invitees/InviteesListItem.vue
+++ b/src/components/Editor/Invitees/InviteesListItem.vue
@@ -2,6 +2,7 @@
- @copyright Copyright (c) 2019 Georg Ehrke
-
- @author Georg Ehrke
+ - @author Richard Steinmetz
-
- @license GNU AGPL version 3 or any later version
-
@@ -106,10 +107,18 @@ export default {
},
},
computed: {
+ /**
+ * @return {string}
+ */
avatarLink() {
// return this.$store.getters.getAvatarForContact(this.uri) || this.commonName
return this.commonName
},
+ /**
+ * Common name of the organizer or the uri without the 'mailto:' prefix.
+ *
+ * @return {string}
+ */
commonName() {
if (this.attendee.commonName) {
return this.attendee.commonName
@@ -119,7 +128,7 @@ export default {
return removeMailtoPrefix(this.attendee.uri)
}
- return this.attendee.uri
+ return ''
},
radioName() {
return this._uid + '-role-radio-input-group'
@@ -174,6 +183,9 @@ export default {