Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Arch Linux
Rebuilderd Website
Commits
0124025b
Commit
0124025b
authored
May 09, 2020
by
Jelle van der Waa
🚧
Browse files
Show one digit in the reproducible percentage
parent
3205db8e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/index.js
View file @
0124025b
...
...
@@ -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
};
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment