diff --git a/bigbluebutton-html5/imports/ui/components/user-list/user-list-content/user-participants/component.jsx b/bigbluebutton-html5/imports/ui/components/user-list/user-list-content/user-participants/component.jsx index ff8e0f3cf2..4d529ed398 100755 --- a/bigbluebutton-html5/imports/ui/components/user-list/user-list-content/user-participants/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/user-list/user-list-content/user-participants/component.jsx @@ -92,7 +92,7 @@ class UserParticipants extends Component { selectEl(el) { if (!el) return null; - if (el.getAttribute('tabindex')) return el?.focus(); + if (typeof el.getAttribute === 'function' && el.getAttribute('tabindex')) return el?.focus(); this.selectEl(el?.firstChild); }