File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
packages/jupyterlab-lsp/src/adapters Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -278,7 +278,15 @@ export abstract class WidgetAdapter<T extends IDocumentWidget> {
278
278
return ;
279
279
}
280
280
281
- if ( state === 'completed' ) {
281
+ // TODO: remove workaround no later than with 3.2 release of JupyterLab
282
+ // workaround for https://github.com/jupyterlab/jupyterlab/issues/10721
283
+ // while already reverted in https://github.com/jupyterlab/jupyterlab/pull/10741,
284
+ // it was not released yet and many users will continue to run 3.1.0 and 3.1.1
285
+ // so lets workaround it for now
286
+ // @ts -ignore
287
+ const completedManually = state === 'completed manually' ;
288
+
289
+ if ( state === 'completed' || completedManually ) {
282
290
// note: must only be send to the appropriate connections as
283
291
// some servers (Julia) break if they receive save notification
284
292
// for a document that was not opened before, see:
You can’t perform that action at this time.
0 commit comments