From 105e245c7e587096955fab63ec8a9ca34ce14496 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5var=20Aamb=C3=B8=20Fosstveit?= Date: Thu, 5 Dec 2019 13:46:16 +0100 Subject: [PATCH] Error in spotlightselector. --- .../MeetingDrawer/ParticipantList/ParticipantList.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/src/components/MeetingDrawer/ParticipantList/ParticipantList.js b/app/src/components/MeetingDrawer/ParticipantList/ParticipantList.js index 0cb9c2b..3313d2b 100644 --- a/app/src/components/MeetingDrawer/ParticipantList/ParticipantList.js +++ b/app/src/components/MeetingDrawer/ParticipantList/ParticipantList.js @@ -100,16 +100,16 @@ class ParticipantList extends React.PureComponent defaultMessage='Participants in Spotlight' /> - { spotlightPeers.map((peer) => ( + { spotlightPeers.map((peerId) => (
  • roomClient.setSelectedPeer(peer.id)} + onClick={() => roomClient.setSelectedPeer(peerId)} > - - + +
  • ))}