From 1082b6965a64f8713e71293bfd86aa1e513f7b15 Mon Sep 17 00:00:00 2001 From: Gabriel Borlea Date: Thu, 2 Mar 2023 13:45:06 +0200 Subject: [PATCH] fix tests --- .../components/web/MeetingParticipantItem.js | 3 ++- .../components/web/ParticipantActionEllipsis.tsx | 7 +++++-- .../components/web/ParticipantQuickAction.tsx | 8 ++++---- .../video-menu/components/web/AskToUnmuteButton.tsx | 1 + 4 files changed, 12 insertions(+), 7 deletions(-) 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) => (