fix(E( 00.00 )):

This commit is contained in:
Alexander Myasoedov
2025-02-21 19:02:45 +02:00
parent 5c37e33069
commit b8069b809a
+1
View File
@@ -241,5 +241,6 @@ function _getFailureRateScore(failureRate) {
else if (strengthRate >= 80) return 'B';
else if (strengthRate >= 70) return 'C';
else if (strengthRate >= 60) return 'D';
else if (strengthRate >= 1) return '?';
else return 'E'; // For strengthRate less than 60
}