Fixed the App instantiation options

Jeremy Tuloup 5 years ago
parent 991da2023b
commit 75a4c861e4

@ -23,7 +23,8 @@ export class App extends JupyterFrontEnd<IClassicShell> {
*/
constructor(options: App.IOptions = { shell: new ClassicShell() }) {
super({
shell: options.shell
...options,
shell: options.shell ?? new ClassicShell()
});
void this._formatter.invoke();
}

Loading…
Cancel
Save