Skip to content
Snippets Groups Projects
Commit 0124025b authored by Jelle van der Waa's avatar Jelle van der Waa :construction:
Browse files

Show one digit in the reproducible percentage

parent 3205db8e
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ function calculateSuiteStats(data) {
}
}
reproPercentage = Math.round(good / data.length * 100);
reproPercentage = (good / data.length * 100).toFixed(1);
return {good, bad, unknown, reproPercentage};
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment