We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 781d597 commit d1b82aeCopy full SHA for d1b82ae
services/static-webserver/client/source/class/osparc/desktop/StudyEditor.js
@@ -378,7 +378,12 @@ qx.Class.define("osparc.desktop.StudyEditor", {
378
this.__pendingProjectData = null;
379
380
this.__applyProjectDocument(latestData);
381
- }, 6*this.self().THROTTLE_PATCH_TIME);
+ }, 3*this.self().THROTTLE_PATCH_TIME);
382
+ // make it 3 times longer.
383
+ // when another client adds a node:
384
+ // - there is a POST call
385
+ // - then (after the throttle) a PATCH on its position
386
+ // without waiting for it 3 times, this client might place it on the default 0,0
387
},
388
389
__applyProjectDocument: function(data) {
0 commit comments