From 876c5dc9dfede580dfdb8f5d982b8b912958eacc Mon Sep 17 00:00:00 2001 From: Joram Wilander Date: Tue, 6 Jun 2017 07:55:26 -0400 Subject: Fix default text for channel switcher (#6581) --- webapp/components/quick_switch_modal/quick_switch_modal.jsx | 8 ++++++-- webapp/components/sidebar.jsx | 4 +++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/webapp/components/quick_switch_modal/quick_switch_modal.jsx b/webapp/components/quick_switch_modal/quick_switch_modal.jsx index c3095caf9..779b8aa8b 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 0988101d8..6fd82f3a7 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 { > -- cgit v1.2.3-1-g7c22