diff --git a/bigbluebutton-html5/imports/ui/components/shortcut-help/component.jsx b/bigbluebutton-html5/imports/ui/components/shortcut-help/component.jsx
index e5f563245bbf3a9c39c7fb54418343096f8ac387..97a88ccd05d797e7c1635810f6c73eb0c836be7f 100644
--- a/bigbluebutton-html5/imports/ui/components/shortcut-help/component.jsx
+++ b/bigbluebutton-html5/imports/ui/components/shortcut-help/component.jsx
@@ -32,43 +32,43 @@ const intlMessages = defineMessages({
     id: 'app.shortcut-help.functionLabel',
     description: 'heading for shortcut function column',
   },
-  openOptions: {
+  openoptions: {
     id: 'app.shortcut-help.openOptions',
     description: 'describes the open options shortcut',
   },
-  toggleUserList: {
+  toggleuserlist: {
     id: 'app.shortcut-help.toggleUserList',
     description: 'describes the toggle userlist shortcut',
   },
-  toggleMute: {
+  togglemute: {
     id: 'app.shortcut-help.toggleMute',
     description: 'describes the toggle mute shortcut',
   },
-  togglePublicChat: {
+  togglepublicchat: {
     id: 'app.shortcut-help.togglePublicChat',
     description: 'describes the toggle public chat shortcut',
   },
-  hidePrivateChat: {
+  hideprivatechat: {
     id: 'app.shortcut-help.hidePrivateChat',
     description: 'describes the hide public chat shortcut',
   },
-  closePrivateChat: {
+  closeprivatechat: {
     id: 'app.shortcut-help.closePrivateChat',
     description: 'describes the close private chat shortcut',
   },
-  openActions: {
+  openactions: {
     id: 'app.shortcut-help.openActions',
     description: 'describes the open actions shortcut',
   },
-  openStatus: {
+  openstatus: {
     id: 'app.shortcut-help.openStatus',
     description: 'describes the open status shortcut',
   },
-  joinAudio: {
+  joinaudio: {
     id: 'app.audio.joinAudio',
     description: 'describes the join audio shortcut',
   },
-  leaveAudio: {
+  leaveaudio: {
     id: 'app.audio.leaveAudio',
     description: 'describes the leave audio shortcut',
   },
@@ -122,11 +122,10 @@ const ShortcutHelpComponent = (props) => {
 
   const shortcutItems = shortcuts.map((shortcut) => {
     if (!CHAT_ENABLED && shortcut.descId.indexOf('Chat') !== -1) return null;
-
     return (
       <tr key={_.uniqueId('hotkey-item-')}>
         <td className={styles.keyCell}>{`${accessMod} + ${shortcut.accesskey}`}</td>
-        <td className={styles.descCell}>{intl.formatMessage(intlMessages[`${shortcut.descId}`])}</td>
+        <td className={styles.descCell}>{`${intl.formatMessage(intlMessages[`${shortcut.descId.toLowerCase()}`])}`}</td>
       </tr>
     );
   });
diff --git a/bigbluebutton-html5/private/config/settings.yml b/bigbluebutton-html5/private/config/settings.yml
index b40d1296e3782ce5725498319ac43cce96a61e7d..367fbbf76b234cdfaac2f525ce5f969bf9465cb3 100755
--- a/bigbluebutton-html5/private/config/settings.yml
+++ b/bigbluebutton-html5/private/config/settings.yml
@@ -68,9 +68,6 @@ public:
       openActions:
         accesskey: A
         descId: openActions
-      openStatus:
-        accesskey: S
-        descId: openStatus
     branding:
       displayBrandingArea: false
     connectionTimeout: 60000