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
I am trying to implement saving extra content in mime bundle in cell output on document saving in jupyter-widgets/ipywidgets#3107 . For this I was planning to use context.saveState.connect((sender, saveState) => ... but looking at
I see that the event is emitted, and not awaited for.
This makes it impossible to do async tasks before saving the document. I was wondering if this is a design decision or a possible oversight, or simply not implemented.
cheers,
Maarten
The text was updated successfully, but these errors were encountered:
Hi all,
I am trying to implement saving extra content in mime bundle in cell output on document saving in jupyter-widgets/ipywidgets#3107 . For this I was planning to use
context.saveState.connect((sender, saveState) => ...
but looking atjupyterlab/packages/docregistry/src/context.ts
Line 506 in c91e1ea
This makes it impossible to do async tasks before saving the document. I was wondering if this is a design decision or a possible oversight, or simply not implemented.
cheers,
Maarten
The text was updated successfully, but these errors were encountered: