1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:27:35 +00:00

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) {