mirror of https://github.com/zulip/zulip.git
click_handlers: Ensure typeahead clicks do not collapse compose box.
Added condition for when a user clicks anywhere in a typeahead menu, be it the header or empty space at the top and bottom, to not collapse the compose box. This fixes the bug where clicking anywhere on the typeahead except the options would result in the compose box collapsing, but the typeahead menu staying open and still working (on selecting a option in this state, it would be inserted at the start, as visible on reopening the compose box).
This commit is contained in:
parent
1db7f80f94
commit
b8cb72630f
|
@ -872,6 +872,7 @@ export function initialize() {
|
|||
!$(e.target).closest(".popover").length &&
|
||||
!$(e.target).closest(".micromodal").length &&
|
||||
!$(e.target).closest("[data-tippy-root]").length &&
|
||||
!$(e.target).closest(".typeahead").length &&
|
||||
!$(e.target).closest(".enter_sends").length &&
|
||||
$(e.target).closest("body").length
|
||||
) {
|
||||
|
|
Loading…
Reference in New Issue