diff --git a/react/features/participants-pane/components/web/MeetingParticipantItem.js b/react/features/participants-pane/components/web/MeetingParticipantItem.js index 6a78f6ece..27704674a 100644 --- a/react/features/participants-pane/components/web/MeetingParticipantItem.js +++ b/react/features/participants-pane/components/web/MeetingParticipantItem.js @@ -272,7 +272,8 @@ function MeetingParticipantItem({ )} + onClick = { onContextMenu } + participantID = { _participantID } /> } diff --git a/react/features/participants-pane/components/web/ParticipantActionEllipsis.tsx b/react/features/participants-pane/components/web/ParticipantActionEllipsis.tsx index 1ee977351..c1fead245 100644 --- a/react/features/participants-pane/components/web/ParticipantActionEllipsis.tsx +++ b/react/features/participants-pane/components/web/ParticipantActionEllipsis.tsx @@ -14,14 +14,17 @@ interface IProps { * Click handler function. */ onClick: () => void; + + participantID: string; } -const ParticipantActionEllipsis = ({ accessibilityLabel, onClick }: IProps) => ( +const ParticipantActionEllipsis = ({ accessibilityLabel, onClick, participantID }: IProps) => (