From 9bd6fc37cc7ba89ebf3e978653c91b8fb8d8fa36 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 11 May 2022 14:37:44 +0300 Subject: [PATCH] Fix Bug 57110 (#1734) --- 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 61241e5d88..1ce7ee8ac6 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);