diff --git a/webapp/components/quick_switch_modal/quick_switch_modal.jsx b/webapp/components/quick_switch_modal/quick_switch_modal.jsx
index c3095caf93..779b8aa8ba 100644
--- a/webapp/components/quick_switch_modal/quick_switch_modal.jsx
+++ b/webapp/components/quick_switch_modal/quick_switch_modal.jsx
@@ -199,13 +199,17 @@ export default class QuickSwitchModal extends React.PureComponent {
let renderDividers = true;
let channelShortcut = 'quick_switch_modal.channelsShortcut.windows';
+ let defaultChannelShortcut = 'CTRL+K';
if (Utils.isMac()) {
channelShortcut = 'quick_switch_modal.channelsShortcut.mac';
+ defaultChannelShortcut = 'CMD+K';
}
let teamShortcut = 'quick_switch_modal.teamsShortcut.windows';
+ let defaultTeamShortcut = 'CTRL+ALT+K';
if (Utils.isMac()) {
teamShortcut = 'quick_switch_modal.teamsShortcut.mac';
+ defaultTeamShortcut = 'CMD+ALT+K';
}
if (this.props.showTeamSwitcher) {
@@ -238,7 +242,7 @@ export default class QuickSwitchModal extends React.PureComponent {
@@ -260,7 +264,7 @@ export default class QuickSwitchModal extends React.PureComponent {
diff --git a/webapp/components/sidebar.jsx b/webapp/components/sidebar.jsx
index 0988101d83..6fd82f3a7b 100644
--- a/webapp/components/sidebar.jsx
+++ b/webapp/components/sidebar.jsx
@@ -804,8 +804,10 @@ export default class Sidebar extends React.Component {
}
let quickSwitchText = 'sidebar.switch_channels';
+ let quickSwitchDefault = 'Switch Channels (CTRL + K)';
if (Utils.isMac()) {
quickSwitchText += '.mac';
+ quickSwitchDefault = 'Switch Channels (CMD + K)';
}
return (
@@ -916,7 +918,7 @@ export default class Sidebar extends React.Component {
>