48 null bug fix

This commit is contained in:
2026-05-06 21:15:12 +03:00
parent fcde490da1
commit df4abb6969
3 changed files with 89 additions and 40 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ function numFmt(num, decimalPlaces = 0){
request.numFmt = numFmt;
function nFmt(num, decimalPlaces = 2){
if (num EQ 0) return "";
if (num EQ 0 OR NOT isNumeric(num)) return "";
return numFmt(num, decimalPlaces);
}
request.nFmt = nFmt;