From 4a203b5ea4b09de7c91c49d1c99c83fbf42c2840 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Fri, 9 Oct 2015 16:02:48 -0500 Subject: [PATCH] Fix handling of upload add_link --- notebook/static/tree/js/notebooklist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebook/static/tree/js/notebooklist.js b/notebook/static/tree/js/notebooklist.js index f69e8b1a2..4690bc836 100644 --- a/notebook/static/tree/js/notebooklist.js +++ b/notebook/static/tree/js/notebooklist.js @@ -815,7 +815,7 @@ define([ filedata = btoa(bytes); format = 'base64'; } - var model = {}; + var model = { name: filename, path: path }; var name_and_ext = utils.splitext(filename); var file_ext = name_and_ext[1];