You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I comment out the DataFrames, then the download works. When I switch to mo.plain(...) to render the DataFrames, then download works.
I don't think there's anything special about the DataFrames apart from they have a "large" number of columns - the first one is 37 columns, but the second one is a limited subset of columns aggregated.
The text was updated successfully, but these errors were encountered:
Thanks for reporting. Are you able to get it to consistently fail? Are you able to share the code? It looks like chrome has a 2mb limit for what we are doing, but Firefox does not. What browser are you using? Can you try safari or Firefox?
Describe the bug
Saving to PNG fails for some notebooks.
The toaster appears with the error message, but no information is logged to the browser console - no errors, warnings, etc are added.
Environment
Code to reproduce
My guess is there's a failure in
downloadByUrl
here:marimo/frontend/src/utils/download.ts
Line 18 in 7dfbc56
But because there's no JS error emitted, I don't know exactly how to reproduce.
I've got a notebook with 2 Pandas DataFrames displayed and 4 Altair charts.
The DataFrames are displayed by returning the DF at the end of the cell as per https://docs.marimo.io/guides/working_with_data/dataframes.html#displaying-dataframes - so I'm assuming they're using
mo.ui.table
.When I comment out the DataFrames, then the download works. When I switch to
mo.plain(...)
to render the DataFrames, then download works.I don't think there's anything special about the DataFrames apart from they have a "large" number of columns - the first one is 37 columns, but the second one is a limited subset of columns aggregated.
The text was updated successfully, but these errors were encountered: