@jupyter/docprovider
Advanced tools
Comparing version 2.0.0-alpha.1 to 2.0.0-alpha.2
@@ -27,5 +27,5 @@ /* ----------------------------------------------------------------------------- | ||
this._onConnectionClosed = (event) => { | ||
if (event.code === 1003) { | ||
console.error('Document provider closed:', event.reason); | ||
showErrorMessage(this._trans.__('Document session error'), event.reason, [ | ||
if (event.code >= 1003 && event.code < 1006) { | ||
console.error('Document provider closed:', event.code, event.reason); | ||
showErrorMessage(this._trans.__('Document error'), event.reason, [ | ||
Dialog.okButton() | ||
@@ -32,0 +32,0 @@ ]); |
{ | ||
"name": "@jupyter/docprovider", | ||
"version": "2.0.0-alpha.1", | ||
"version": "2.0.0-alpha.2", | ||
"description": "JupyterLab - Document Provider", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/jupyterlab/jupyter_collaboration", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
29108