Update bigbluebutton-html5/imports/ui/components/raisehand-notifier/component.jsx

Co-authored-by: Ramón Souza <contato@ramonsouza.com>
This commit is contained in:
André Castro 2023-10-23 11:11:11 -03:00 committed by GitHub
parent 39de071ab2
commit 371378cca8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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}