Skip to content

Commit 3a4c480

Browse files
committed
clean logs
1 parent 5f384f3 commit 3a4c480

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

services/static-webserver/client/source/class/osparc/share/NewCollaboratorsManager.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -280,18 +280,14 @@ qx.Class.define("osparc.share.NewCollaboratorsManager", {
280280
potentialCollaborators.forEach(potentialCollaborator => {
281281
// do not list the potentialCollaborators that are already collaborators
282282
if (existingCollaborators.includes(potentialCollaborator.getGroupId())) {
283-
console.log("already collaborator", potentialCollaborator.getLabel());
284283
return;
285284
}
286285
// do not list the potentialCollaborators that were selected
287-
console.log("selected?", potentialCollaborator.getGroupId(), this.__selectedCollaborators);
288286
if (potentialCollaborator.getGroupId() in this.__selectedCollaborators) {
289-
console.log("already selected", potentialCollaborator.getLabel());
290287
return;
291288
}
292289
// do not list the potentialCollaborators that were already listed
293290
if (potentialCollaboratorList.getChildren().find(c => "groupId" in c && c["groupId"] === potentialCollaborator.getGroupId())) {
294-
console.log("already listed", potentialCollaborator.getLabel());
295291
return;
296292
}
297293
// maybe, do not list the organizations

0 commit comments

Comments
 (0)