diff --git a/client/modules/crm/src/views/meeting/modals/detail.js b/client/modules/crm/src/views/meeting/modals/detail.js index 3487bf1542..1f2d34abe3 100644 --- a/client/modules/crm/src/views/meeting/modals/detail.js +++ b/client/modules/crm/src/views/meeting/modals/detail.js @@ -242,7 +242,12 @@ define('crm:views/meeting/modals/detail', ['views/modals/detail'], function (Dep id: this.model.id, status: status, }).then(() => { - this.model.fetch(); + this.model.fetch() + .then(() => { + setTimeout(() => { + this.$el.find(`button[data-name="setAcceptanceStatus"]`).focus(); + }, 50) + }); }); }); });