mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 09:17:35 +00:00
Spreadsheet: Interpret numbers as floats, not integers
This commit is contained in:
parent
21c605bfda
commit
21671d9b91
1 changed files with 1 additions and 1 deletions
|
@ -431,7 +431,7 @@ function numericReduce(op, accumulator, cells) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function numericResolve(cells) {
|
function numericResolve(cells) {
|
||||||
return resolve(cells).map(val => parseInt(val));
|
return resolve(cells).map(val => parseFloat(val));
|
||||||
}
|
}
|
||||||
|
|
||||||
function resolve(cells) {
|
function resolve(cells) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue