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 1/3] 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} From 371378cca8ad97ffa182b2887e151749e49b01a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Castro?= <36093456+Scroody@users.noreply.github.com> Date: Mon, 23 Oct 2023 11:11:11 -0300 Subject: [PATCH 2/3] Update bigbluebutton-html5/imports/ui/components/raisehand-notifier/component.jsx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Ramón Souza --- .../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 059666b06e..cfbdb23605 100644 --- a/bigbluebutton-html5/imports/ui/components/raisehand-notifier/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/raisehand-notifier/component.jsx @@ -135,7 +135,7 @@ class RaiseHandNotifier extends Component { tabIndex={0} style={{ backgroundColor: `${u.color}` }} onClick={() => lowerUserHands(u.userId)} - onKeyDown={(e) => (e.keyCode === ENTER ? clearUserStatus(u.userId) : null)} + onKeyDown={(e) => (e.keyCode === ENTER ? lowerUserHands(u.userId) : null)} data-test="avatarsWrapperAvatar" moderator={u.role === ROLE_MODERATOR} avatar={u.avatar} From 281308ba4a164ad122f42cdb96f7a54b1a55bda1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Castro?= <36093456+Scroody@users.noreply.github.com> Date: Mon, 23 Oct 2023 11:12:50 -0300 Subject: [PATCH 3/3] 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 cfbdb23605..fbbd9595b6 100644 --- a/bigbluebutton-html5/imports/ui/components/raisehand-notifier/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/raisehand-notifier/component.jsx @@ -121,7 +121,7 @@ class RaiseHandNotifier extends Component { } raisedHandAvatars() { - const { raiseHandUsers, clearUserStatus, intl } = this.props; + const { raiseHandUsers, lowerUserHands, intl } = this.props; let users = raiseHandUsers; if (raiseHandUsers.length > MAX_AVATAR_COUNT) users = users.slice(0, MAX_AVATAR_COUNT);