Round width of change progress bar to 2 decimals

It is possible for a gap in the progress bar to remain empty due to how
we round the width to no decimals. This should allow us to properly fill
the progress bar closer to 100%.

Change-Id: I2fb11660b00abb741dc6b973e449efe05cb5bc9f
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2020-07-14 22:34:56 -04:00
parent bd09bc6cae
commit 7015626e8a
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ class ChangePanel extends React.Component {
}
renderProgressBar (change) {
let jobPercent = Math.floor(100 / change.jobs.length)
let jobPercent = (100 / change.jobs.length).toFixed(2)
return (
<div className='progress zuul-change-total-result'>
{change.jobs.map((job, idx) => {