inbox: Fix topic not focused with r hotkey with no topic focused.

We mimic the behaviour of `c` hotkey to fix this bug.
This commit is contained in:
Aman Agrawal
2025-06-20 18:21:10 +05:30
committed by Tim Abbott
parent 1878200402
commit 26299d09aa

View File

@@ -214,7 +214,11 @@ function get_focus_area(opts: ComposeTriggeredOptions): string {
(opts.message_type === "stream" && opts.stream_id !== undefined) ||
(opts.message_type === "private" && opts.private_message_recipient_ids.length > 0)
) {
if (opts.trigger === "clear topic button" || opts.trigger === "compose_hotkey") {
if (
opts.trigger === "clear topic button" ||
opts.trigger === "compose_hotkey" ||
opts.trigger === "inbox_nofocus"
) {
return "input#stream_message_recipient_topic";
}
return "textarea#compose-textarea";