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 7cf736d commit 24694d3Copy full SHA for 24694d3
services/static-webserver/client/source/class/osparc/data/model/Workbench.js
@@ -893,8 +893,9 @@ qx.Class.define("osparc.data.model.Workbench", {
893
},
894
895
__addNodesFromPatches: function(nodesAdded, workbenchPatchesByNode) {
896
- // not solved yet, reload the site to avoid issues
897
- window.location.reload();
+ // not solved yet, log the user out to avoid issues
+ qx.core.Init.getApplication().logout(this.tr("Potential updates coming from a collaborator"));
898
+ return;
899
900
const promises = nodesAdded.map(nodeId => {
901
const addNodePatch = workbenchPatchesByNode[nodeId].find(workbenchPatch => {
0 commit comments