diff --git a/client/src/views/modals/detail.js b/client/src/views/modals/detail.js index 08e874e5e0..3430bb754b 100644 --- a/client/src/views/modals/detail.js +++ b/client/src/views/modals/detail.js @@ -188,7 +188,10 @@ define('views/modals/detail', ['views/modal', 'helpers/action-item-setup'], func this.trigger('model-sync'); }); - this.listenToOnce(this.model, 'sync', () => this.createRecordView()); + this.listenToOnce(this.model, 'sync', () => { + this.setupActionItems(); + this.createRecordView(); + }); this.model.fetch();