mirror of https://github.com/zulip/zulip.git
Fix typo
It was preventing the right text area being focused on huddles (imported from commit 8ebe457b4e5bce723e3afd9f396f97eeb0e97c46)
This commit is contained in:
parent
9c2da407e6
commit
a80e08fbf3
|
@ -35,7 +35,7 @@ exports.start = function (msg_type, opts) {
|
|||
if (msg_type === 'stream') {
|
||||
exports.show('stream', $("#" + (focus_area || 'stream')));
|
||||
} else {
|
||||
exports.show('personal', $("#" + (focus_area || 'huddle_recipients')));
|
||||
exports.show('personal', $("#" + (focus_area || 'huddle_recipient')));
|
||||
}
|
||||
|
||||
hotkeys.set_compose();
|
||||
|
|
Loading…
Reference in New Issue