Skip to content

Commit ed868e4

Browse files
authored
Merge pull request #6675 from nextcloud/backport/6674/stable5.1
[stable5.1] fix: show display name instead of user id in availability integration
2 parents f0c8266 + bf683e0 commit ed868e4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/views/ContactsMenuAvailability.vue

+4-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@ export default {
5050
},
5151
},
5252
data() {
53-
const initialAttendee = AttendeeProperty.fromNameAndEMail(this.userId, this.userEmail)
53+
const initialAttendee = AttendeeProperty.fromNameAndEMail(
54+
this.userDisplayName,
55+
this.userEmail,
56+
)
5457
const attendees = [mapAttendeePropertyToAttendeeObject(initialAttendee)]
5558

5659
return {

0 commit comments

Comments
 (0)