Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -920,7 +920,6 @@ qx.Class.define("osparc.dashboard.CardBase", {
});
control.addListener("tap", e => {
e.stopPropagation();
this.setValue(false);
this.fireDataEvent("emptyStudyClicked", this.getUuid());
}, this);
return control;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,12 @@ qx.Class.define("osparc.share.NewCollaboratorsManager", {
},

__renderLayout: function() {
let text = this.__showOrganizations ?
this.tr("Select users or organizations from the list below.") :
this.tr("Select users from the list below.");
text += this.tr("<br>If they aren't listed, search them by username, or email and/or full name if these are publicly available.");
const introLabel = new qx.ui.basic.Label().set({
value: this.tr("Select users or organizations from the list bellow. Search them if they aren't listed."),
value: text,
rich: true,
wrap: true,
paddingBottom: 5
Expand Down
Loading