From 8acd4376d975a4756e08c2ab9c2fedf617f0080f Mon Sep 17 00:00:00 2001 From: mabashian Date: Mon, 7 Oct 2019 14:53:53 -0400 Subject: [PATCH] Removes restriction on scrolling for output fewer than 50 lines --- awx/ui/client/features/output/index.controller.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/awx/ui/client/features/output/index.controller.js b/awx/ui/client/features/output/index.controller.js index 6521f9bc1e..07124d8bd9 100644 --- a/awx/ui/client/features/output/index.controller.js +++ b/awx/ui/client/features/output/index.controller.js @@ -230,8 +230,7 @@ function canStartFollowing () { } if (followOnce && // one-time activation from top of first page - scroll.isBeyondUpperThreshold() && - slide.getTailCounter() - slide.getHeadCounter() >= OUTPUT_PAGE_SIZE) { + scroll.isBeyondUpperThreshold()) { followOnce = false; return true;