Fix minor error on Welcome page

This commit is contained in:
Guy Scharf 2021-10-07 14:15:04 -07:00 committed by Guy Scharf
parent 93e7dc1862
commit 4b1a039acb

View File

@ -308,7 +308,7 @@ QString Welcome::GenerateCPAPHTML()
comp = under;
} else if ((leak > leakdays) && ((leak - leakdays) >= 0.1)) {
comp = over;
} else if ((fabs(ahi > ahidays) >= 0.01) ) {
} else if ((fabs(leak - leakdays) >= 0.01) ) {
comp = close;
} else {
comp = equal;