-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Closed
Labels
Milestone
Description
We have a sandbox environment for sample Notebooks and when we try to open an existing sample (http://notebooks.esri.com/notebooks/samples/03_org_administrators/move_existing_user_content_to_a_new_user.ipynb), it generates the following error:
It appears to be having a problem parsing parts of the Notebook file. However, we do not experience this issue when working with Notebook 5.0.x.
Web browser console reports the following:
/**
* Success callback for loading a notebook from the server.
*
* Load notebook data from the JSON response.
*
* @param {object} data JSON representation of a notebook
*/
Notebook.prototype.load_notebook_success = function (data) {
var failed, msg;
try {
this.fromJSON(data);
} catch (e) {
failed = e;
console.error("Notebook failed to load from JSON:", e);
}Any thoughts?
fdabek1 and cxy229

