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 68cbbd5 commit cd88ca7Copy full SHA for cd88ca7
services/static-webserver/client/source/class/osparc/dashboard/CardBase.js
@@ -194,10 +194,12 @@ qx.Class.define("osparc.dashboard.CardBase", {
194
}
195
196
197
- if (sharedGrps.length === 0 && osparc.data.model.Study.canIWrite(accessRights)) {
198
- shareIcon.set({
199
- toolTipText: qx.locale.Manager.tr("Share")
200
- });
+ if (sharedGrps.length === 0) {
+ if (osparc.data.model.Study.canIWrite(accessRights)) {
+ shareIcon.set({
+ toolTipText: qx.locale.Manager.tr("Share")
201
+ });
202
+ }
203
return;
204
205
const sharedGrpLabels = [];
0 commit comments