From de0d9b53eabf6f2985d72ce5f51e94549f7f1f36 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 11 May 2022 14:29:31 +0300 Subject: [PATCH] Fix Bug 57110 --- apps/common/main/lib/controller/ReviewChanges.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/common/main/lib/controller/ReviewChanges.js b/apps/common/main/lib/controller/ReviewChanges.js index 61241e5d8..1ce7ee8ac 100644 --- a/apps/common/main/lib/controller/ReviewChanges.js +++ b/apps/common/main/lib/controller/ReviewChanges.js @@ -277,6 +277,9 @@ define([ this.popover = Common.Views.ReviewPopover.prototype.getPopover({ reviewStore : this.popoverChanges, renderTo : this.sdkViewName, + canRequestUsers: (this.appConfig) ? this.appConfig.canRequestUsers : undefined, + canRequestSendNotify: (this.appConfig) ? this.appConfig.canRequestSendNotify : undefined, + mentionShare: (this.appConfig) ? this.appConfig.mentionShare : true, api: this.api }); this.popover.setReviewStore(this.popoverChanges);