From f1be2ffc4efcde19abcb81d5b3f4c1ca378bb438 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Mon, 24 Apr 2023 11:20:03 +0300 Subject: [PATCH] [scaling] Fix icons in collaboration --- apps/common/main/lib/view/ReviewChanges.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/common/main/lib/view/ReviewChanges.js b/apps/common/main/lib/view/ReviewChanges.js index eeff989a04..41cee2b564 100644 --- a/apps/common/main/lib/view/ReviewChanges.js +++ b/apps/common/main/lib/view/ReviewChanges.js @@ -101,8 +101,8 @@ define([ '' + '
' + '
' + - '' + - '' + + '' + + '' + '
' + '
' + '
' + @@ -735,8 +735,8 @@ define([ if ( this.appConfig.canReview ) { this.btnAccept.render(this.$el.find('#btn-change-accept')); this.btnReject.render(this.$el.find('#btn-change-reject')); - this.appConfig.canFeatureComparison && this.btnCompare.render(this.$el.find('#btn-compare')); - this.appConfig.canFeatureComparison && this.btnCombine.render(this.$el.find('#btn-combine')); + this.appConfig.canFeatureComparison && this.btnCompare.render(this.$el.find('#slot-btn-compare')); + this.appConfig.canFeatureComparison && this.btnCombine.render(this.$el.find('#slot-btn-combine')); this.btnTurnOn.render(this.$el.find('#btn-review-on')); } this.btnPrev && this.btnPrev.render(this.$el.find('#btn-change-prev'));