Hide reply option on pending tile
This commit is contained in:
parent
951af49e04
commit
ef5a377bc6
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ export class BaseMessageView extends TemplateView {
|
|||
|
||||
createMenuOptions(vm) {
|
||||
const options = [];
|
||||
if (vm.canReact && vm.shape !== "redacted") {
|
||||
if (vm.canReact && vm.shape !== "redacted" && !vm.isPending) {
|
||||
options.push(new QuickReactionsMenuOption(vm));
|
||||
options.push(Menu.option(vm.i18n`Reply`, () => vm.startReply()));
|
||||
}
|
||||
|
|
Reference in a new issue