removed unnecessary tostring

This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD
2024-05-28 14:26:05 -06:00
parent cbc430499f
commit c1ca63edc0
2 changed files with 4 additions and 4 deletions

View File

@@ -86,7 +86,7 @@
}
function globalFloatToString(input) {
var decimalSeparator = decodeHTMLEntities("@numberFormat.NumberDecimalSeparator");
input = input.toString().replace(".", decimalSeparator);
input = input.replace(".", decimalSeparator);
return input;
}
function genericErrorMessage(){