We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To reproduce this bug you just need to try to write an empty list to a cell. This results in an error Cannot read property 'length' of undefined.
Cannot read property 'length' of undefined
I think I already have spotted out the problem, here:
.case("array", values => { const numRows = values.length; const numCols = values[0].length; <--- const range = this.rangeTo(this.relativeCell(numRows - 1, numCols - 1)); return range.value(values); })
If the list is empty, the values[0] is undefined, which means it is impossible to read the property length.
values[0]
length
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To reproduce this bug you just need to try to write an empty list to a cell.
This results in an error
Cannot read property 'length' of undefined
.I think I already have spotted out the problem, here:
If the list is empty, the
values[0]
is undefined, which means it is impossible to read the propertylength
.The text was updated successfully, but these errors were encountered: