diff --git a/awx/ui/static/js/controllers/JobStdout.js b/awx/ui/static/js/controllers/JobStdout.js index 715a02070f..2bbe06623f 100644 --- a/awx/ui/static/js/controllers/JobStdout.js +++ b/awx/ui/static/js/controllers/JobStdout.js @@ -213,7 +213,7 @@ function JobStdoutController ($log, $rootScope, $scope, $compile, $routeParams, // if user has not disabled live event view by scrolling upward, then scroll down to the new content current_range = data.range; auto_scroll_down = true; // prevent auto load from happening - $('#pre-container-content').scrollTop($('#pre-container-content').prop("scrollHeight")); + $('#pre-container').scrollTop($('#pre-container').prop("scrollHeight")); } $('#stdoutMoreRowsBottom').fadeOut(400); }) diff --git a/awx/ui/static/less/stdout.less b/awx/ui/static/less/stdout.less index 2f523f8405..d85e1c1a8c 100644 --- a/awx/ui/static/less/stdout.less +++ b/awx/ui/static/less/stdout.less @@ -27,6 +27,7 @@ } #stdoutMoreRowsBottom { float: right; + padding-right: 15px; } #pre-container { overflow-x: scroll;