From 94347949d9db46375c5cc86f98758985472c2e65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Castro?= <36093456+Scroody@users.noreply.github.com> Date: Thu, 19 Oct 2023 13:18:10 -0300 Subject: [PATCH] Update component.jsx --- .../imports/ui/components/raisehand-notifier/component.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigbluebutton-html5/imports/ui/components/raisehand-notifier/component.jsx b/bigbluebutton-html5/imports/ui/components/raisehand-notifier/component.jsx index 334e3dbb68..059666b06e 100644 --- a/bigbluebutton-html5/imports/ui/components/raisehand-notifier/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/raisehand-notifier/component.jsx @@ -134,7 +134,7 @@ class RaiseHandNotifier extends Component { role="button" tabIndex={0} style={{ backgroundColor: `${u.color}` }} - onClick={() => clearUserStatus(u.userId)} + onClick={() => lowerUserHands(u.userId)} onKeyDown={(e) => (e.keyCode === ENTER ? clearUserStatus(u.userId) : null)} data-test="avatarsWrapperAvatar" moderator={u.role === ROLE_MODERATOR}