diff --git a/src/shared/chat/message-actions.js b/src/shared/chat/message-actions.js index 87d13e73d6..235596055e 100644 --- a/src/shared/chat/message-actions.js +++ b/src/shared/chat/message-actions.js @@ -72,13 +72,8 @@ class MessageActions extends CustomElement { const buttons = await this.getActionButtons(); const items = buttons.map(b => MessageActions.getActionsDropdownItem(b)); if (items.length) { - // We want to let the message actions menu drop upwards if we're at the - // bottom of the message history, and down otherwise. This is to avoid - // the menu disappearing behind the bottom panel (toolbar, textarea etc). - // That's difficult to know from state, so we're making an approximation here. - const should_drop_up = this.model.collection.length > 3 && this.model === this.model.collection.last(); return html``; } else {