diff --git a/static/directives/build-logs-view.html b/static/directives/build-logs-view.html index e5f0d2915..00a5fbbf8 100644 --- a/static/directives/build-logs-view.html +++ b/static/directives/build-logs-view.html @@ -64,6 +64,9 @@ +
+
+
diff --git a/static/js/services/angular-view-array.js b/static/js/services/angular-view-array.js index 2e0e6594a..9ccd0df20 100644 --- a/static/js/services/angular-view-array.js +++ b/static/js/services/angular-view-array.js @@ -11,6 +11,7 @@ angular.module('quay').factory('AngularViewArray', ['$interval', function($inter this.visibleEntries = null; this.hasEntries = false; this.entries = []; + this.hasHiddenEntries = false; this.timerRef_ = null; this.currentIndex_ = 0; @@ -58,6 +59,7 @@ angular.module('quay').factory('AngularViewArray', ['$interval', function($inter } this.currentIndex_ = i; + this.hasHiddenEntries = this.currentIndex_ < this.entries.length; if (this.currentIndex_ >= this.entries.length) { this.stopTimer_(); }