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