Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.spec.js2
-rw-r--r--src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.spec.js b/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.spec.js
index 75e27599d..40ad1018d 100644
--- a/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.spec.js
+++ b/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.spec.js
@@ -172,7 +172,7 @@ describe('Participant.vue', () => {
test('renders avatar from search result', () => {
participant.label = 'Name from label'
participant.source = 'source-from-search'
- participant.attendeeId = 'id-from-search'
+ participant.id = 'id-from-search'
const wrapper = mountParticipant(participant, true)
const avatarEl = wrapper.findComponent(AvatarWrapper)
expect(avatarEl.exists()).toBe(true)
diff --git a/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue b/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
index 6c87c9443..b4ea4433d 100644
--- a/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
+++ b/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
@@ -409,7 +409,7 @@ export default {
if (!this.isSearched) {
return this.participant.actorId
}
- return this.attendeeId
+ return this.participant.id
},
attendeeId() {