compose: Collapse recipient widget with few options.

This looks visually nicer, and I think is necessary to merge it for
now, but I'm doing this as a separate commit so it's easy to revert if
we change our mind.
This commit is contained in:
Tim Abbott
2023-05-09 13:36:41 -07:00
parent d64ad8653b
commit 77ac1a10de
3 changed files with 3 additions and 3 deletions

View File

@@ -285,7 +285,7 @@ function compose_recipient_dropdown_on_show(dropdown) {
Math.max(top_space, bottom_space),
);
const $popper = $(dropdown.popper);
$popper.find(".dropdown-list-wrapper").css("height", height + "px");
$popper.find(".dropdown-list-wrapper").css("max-height", height + "px");
}
export function open_compose_recipient_dropdown() {