Commit 4238ef34 authored by Mike Greiling's avatar Mike Greiling

fix switched degraded/improved references

parent c47918f9
......@@ -80,11 +80,11 @@ export default {
} else if (improved.length || degraded.length) {
text.push('Performance metrics');
if (degraded.length) {
if (improved.length) {
text.push(n__(
' improved on %d point',
' improved on %d points',
degraded.length,
improved.length,
));
}
......@@ -92,11 +92,11 @@ export default {
text.push(' and');
}
if (improved.length) {
if (degraded.length) {
text.push(n__(
' degraded on %d point',
' degraded on %d points',
improved.length,
degraded.length,
));
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment