diff --git a/common/app/Panes/redux/utils.js b/common/app/Panes/redux/utils.js index 52038dba6d..e29533d4b7 100644 --- a/common/app/Panes/redux/utils.js +++ b/common/app/Panes/redux/utils.js @@ -7,7 +7,9 @@ export function isPanesAction({ type } = {}, panesMap) { export function getDividerLeft(numOfPanes, index) { let dividerLeft = null; - if (numOfPanes > 1 && numOfPanes !== index + 1) { + if (numOfPanes === 2 && numOfPanes !== index + 1) { + dividerLeft = 33; + } else if (numOfPanes > 1 && numOfPanes !== index + 1) { dividerLeft = (100 / numOfPanes) * (index + 1); } return dividerLeft;