Commit b21145cf authored by Jérome Perrin's avatar Jérome Perrin

Set the name of the scenario when loading a file

parent 3c6dcea2
......@@ -39,7 +39,9 @@
return promiseReadAsText(file);
})
.push(function (json) {
json_data = json;
var data = JSON.parse(json);
data.general.name = name;
json_data = JSON.stringify(data);
return createDocument(gadget, name);
})
.push(function (jio_document) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment