Skip to content

Commit 5b04404

Browse files
committed
minor
1 parent ece3121 commit 5b04404

File tree

1 file changed

+1
-2
lines changed
  • services/static-webserver/client/source/class/osparc/desktop

1 file changed

+1
-2
lines changed

services/static-webserver/client/source/class/osparc/desktop/StudyEditor.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,6 @@ qx.Class.define("osparc.desktop.StudyEditor", {
291291
if (!socket.slotExists("projectDocument:updated")) {
292292
socket.on("projectDocument:updated", data => {
293293
if (data["projectId"] === this.getStudy().getUuid()) {
294-
console.log("projectDocument:updated", data);
295294
const currentStudy = this.getStudy().serialize();
296295
// the projectDocument doesn't contain the following properties
297296
[
@@ -305,7 +304,7 @@ qx.Class.define("osparc.desktop.StudyEditor", {
305304
delete currentStudy[prop];
306305
});
307306
const delta = osparc.wrapper.JsonDiffPatch.getInstance().diff(currentStudy, data["document"]);
308-
console.log("projectDocument:updated delta", delta);
307+
console.log("projectDocument:updated delta", currentStudy, data["document"], delta);
309308
}
310309
}, this);
311310
}

0 commit comments

Comments
 (0)