From d3144684c1dd0453b99513975fe515afb1e72311 Mon Sep 17 00:00:00 2001 From: KDSBrowne Date: Wed, 1 Jan 2020 21:46:50 +0000 Subject: [PATCH] fix shortcuts not working --- .../imports/ui/components/shortcut-help/service.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigbluebutton-html5/imports/ui/components/shortcut-help/service.jsx b/bigbluebutton-html5/imports/ui/components/shortcut-help/service.jsx index c240032838..692fc6c998 100644 --- a/bigbluebutton-html5/imports/ui/components/shortcut-help/service.jsx +++ b/bigbluebutton-html5/imports/ui/components/shortcut-help/service.jsx @@ -18,7 +18,7 @@ const withShortcutHelper = (WrappedComponent, param) => (props) => { if (param !== undefined) { if (!Array.isArray(param)) { shortcuts = shortcuts - .filter(el => el.descIdLowerCase === param.toLowerCase()) + .filter(el => el.descId.toLowerCase() === param.toLowerCase()) .map(el => el.accesskey) .pop(); } else {