diff --git a/awx/ui/client/features/output/index.controller.js b/awx/ui/client/features/output/index.controller.js index b9e81caac7..6521f9bc1e 100644 --- a/awx/ui/client/features/output/index.controller.js +++ b/awx/ui/client/features/output/index.controller.js @@ -422,10 +422,18 @@ function menuLast () { function down () { scroll.moveDown(); + + if (scroll.isBeyondLowerThreshold()) { + next(); + } } function up () { scroll.moveUp(); + + if (scroll.isBeyondUpperThreshold()) { + previous(); + } } function togglePanelExpand () {