diff --git a/static/js/app.js b/static/js/app.js index 70b8970e0..69b3399aa 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -202,8 +202,7 @@ quayApp.directive('buildStatus', function () { case 'pushing': var imagePercentDecimal = (buildInfo.image_completion_percent / 100); - var portion = 1 / buildInfo.total_images; - return (buildInfo.current_image / buildInfo.total_images) * 100 + (portion * imagePercentDecimal); + return ((buildInfo.current_image + imagePercentDecimal) / buildInfo.total_images) * 100; break; case 'complete':