diff --git a/assets/js/session/index.js b/assets/js/session/index.js index 74c7f41724d..8e7003267f3 100644 --- a/assets/js/session/index.js +++ b/assets/js/session/index.js @@ -730,7 +730,7 @@ function setFocusedCell(hook, cellId, scroll = true) { ); // Focus the primary cell content, this is important for screen readers const cellBody = cell.querySelector(`[data-element="cell-body"]`); - cellBody.focus(); + cellBody.focus({ preventScroll: true }); } else { hook.state.focusedCellType = null; hook.state.focusedSectionId = null;