Skip to content

Commit

Permalink
Add Signal.block() shim after updating lumino.
Browse files Browse the repository at this point in the history
This was added in jupyterlab/lumino#443.
  • Loading branch information
krassowski authored and fcollonval committed Feb 8, 2023
1 parent 16d5198 commit a22f11a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/filebrowser/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ function createApp(
},
disconnect: () => {
return false;
},
block: () => {
return;
}
};
}
Expand Down
3 changes: 3 additions & 0 deletions examples/notebook/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ function createApp(manager: ServiceManager.IManager): void {
},
disconnect: () => {
return false;
},
block: () => {
return;
}
};
}
Expand Down

0 comments on commit a22f11a

Please sign in to comment.