Spreadsheet: Interpret numbers as floats, not integers

This commit is contained in:
Eli Youngs 2022-05-01 09:34:07 -07:00 committed by Linus Groh
parent 21c605bfda
commit 21671d9b91

View file

@ -431,7 +431,7 @@ function numericReduce(op, accumulator, cells) {
}
function numericResolve(cells) {
return resolve(cells).map(val => parseInt(val));
return resolve(cells).map(val => parseFloat(val));
}
function resolve(cells) {