Skip to content

Commit 029c503

Browse files
authored
Merge branch 'master' into enh/lazy-load-users
2 parents 4701af1 + 8bda78f commit 029c503

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

services/static-webserver/client/source/class/osparc/dashboard/CardBase.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -932,7 +932,6 @@ qx.Class.define("osparc.dashboard.CardBase", {
932932
});
933933
control.addListener("tap", e => {
934934
e.stopPropagation();
935-
this.setValue(false);
936935
this.fireDataEvent("emptyStudyClicked", this.getUuid());
937936
}, this);
938937
return control;

services/static-webserver/client/source/class/osparc/form/tag/TagItem.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,6 @@ qx.Class.define("osparc.form.tag.TagItem", {
230230
__tagItemButtons: function() {
231231
const canIWrite = osparc.share.CollaboratorsTag.canIWrite(this.getMyAccessRights());
232232
const canIDelete = osparc.share.CollaboratorsTag.canIDelete(this.getMyAccessRights());
233-
234233
const buttonContainer = new qx.ui.container.Composite(new qx.ui.layout.HBox(5));
235234

236235
const sharedIcon = this.getChildControl("shared-icon");

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,12 @@ qx.Class.define("osparc.share.NewCollaboratorsManager", {
5555
},
5656

5757
__renderLayout: function() {
58+
let text = this.__showOrganizations ?
59+
this.tr("Select users or organizations from the list below.") :
60+
this.tr("Select users from the list below.");
61+
text += this.tr("<br>Search them if they aren't listed.");
5862
const introLabel = new qx.ui.basic.Label().set({
59-
value: this.tr("Select users or organizations from the list bellow. Search them if they aren't listed."),
63+
value: text,
6064
rich: true,
6165
wrap: true,
6266
paddingBottom: 5

0 commit comments

Comments
 (0)