mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-06 12:43:06 +08:00
Fix issue with clone & move task to another experiment [SCI-4145]
This commit is contained in:
parent
792e6f2eb9
commit
dc8ff18d68
1 changed files with 2 additions and 2 deletions
|
@ -2286,7 +2286,7 @@ function updateFormWithModulesData(modules, connections, gridDistX, gridDistY) {
|
|||
positionsVal += id + "," + x + "," + y + ";";
|
||||
moduleGroupNames[id] = module.attr("data-module-group-name");
|
||||
});
|
||||
positionsDiv.attr("value", positionsDiv.val() + positionsVal);
|
||||
positionsDiv.attr("value", positionsVal + positionsDiv.val());
|
||||
|
||||
if (moduleNamesDiv.val())
|
||||
moduleNamesDiv.attr("value", JSON.stringify($.extend(JSON.parse(moduleNamesDiv.val()),
|
||||
|
|
Loading…
Reference in a new issue