inbox_ui: Change current_focus_id when clicking on inbox search.

This commit is contained in:
Aman Agrawal 2023-10-06 20:32:44 +00:00 committed by Tim Abbott
parent 64cc24722f
commit 3ac6f447d9
1 changed files with 4 additions and 0 deletions

View File

@ -1175,4 +1175,8 @@ export function initialize() {
search_and_update();
focus_inbox_search();
});
$("body").on("click", "#inbox-search", () => {
current_focus_id = INBOX_SEARCH_ID;
});
}