-
-
Notifications
You must be signed in to change notification settings - Fork 204
New issue
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
Bug: v2 throws an exception if the Google Spreadsheet has a chart sheet #107
Comments
Any reason this is a won't-fix? |
@viranch PRs welcome |
@kevinschaich do you think wont-fix can be dropped given the above PR? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
My Google Spreadsheet has a bunch of sheets (tabs at the bottom) that are just dedicated for charts (the ones you get after you insert a new chart in a new dedicated tab/sheet). It was working fine with mintable v1, but after migration to v2.0.1 (and updating the config), running
mintable fetch
throws this exception:Looking at
/.../mintable/lib/integrations/google/googleIntegration.js:268
, its trying to getsheet.properties.gridProperties.columnCount
for a sheet that's not of the typical typeGRID
but ofOBJECT
due to it being just a "chart sheet", which doesn't contain thesheet.properties.gridProperties
attribute.This sounds like the google's npm package issue, but wondering if there's a way to handle this in mintable and avoid the buggy code path. Also, I'm marking this issue as a bug because this issue did not happen in v1, so from a user's POV, v2 introduced a regression.
The text was updated successfully, but these errors were encountered: