We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4aaa800 commit c3792f4Copy full SHA for c3792f4
js/format.js
@@ -141,7 +141,7 @@ function formatData(data) {
141
continue;
142
}
143
if (uniqueKeys.hasOwnProperty(field)) {
144
- dataTempEntry.data[field] = data[key][i][field].toFixed(uniqueKeys[field].precision);
+ dataTempEntry.data[field] = parseFloat(data[key][i][field]).toFixed(uniqueKeys[field].precision);
145
} else {
146
dataTempEntry.data[field] = data[key][i][field];
147
0 commit comments