Skip to content

Commit

Permalink
Merge pull request 'Fix Bug 70249' (#27) from fix/bug-70249 into rele…
Browse files Browse the repository at this point in the history
…ase/v8.2.0
  • Loading branch information
Julia Radzhabova committed Sep 16, 2024
2 parents 1dbe853 + 7da87bf commit 335c171
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/common/main/lib/view/ReviewPopover.js
Original file line number Diff line number Diff line change
Expand Up @@ -951,7 +951,7 @@ define([
arrowView.toggleClass('top', isMoveDown);
arrowView.toggleClass('bottom', !isMoveDown);
arrowView.removeClass('left right');
} else if (sdkBoundsHeight <= outerHeight) {
} else if (Math.ceil(sdkBoundsHeight) <= Math.ceil(outerHeight)) {
this.$window.css({
maxHeight: sdkBoundsHeight - sdkPanelHeight + 'px',
top: sdkBoundsTop + sdkPanelHeight + 'px'
Expand Down

0 comments on commit 335c171

Please sign in to comment.