change: percent > 95 to percent >= 95
This commit is contained in:
parent
cb476f7361
commit
5207338ac1
@ -10,7 +10,7 @@ export function parseHealthStatusByPercent(
|
||||
percent: number,
|
||||
count: number
|
||||
): HealthStatus {
|
||||
if (percent > 95) {
|
||||
if (percent >= 95) {
|
||||
return 'health';
|
||||
} else if (percent === 0 && count === 0) {
|
||||
return 'none';
|
||||
|
Loading…
Reference in New Issue
Block a user