Skip to content

Commit 64e4648

Browse files
committed
writeAccess to concerto to pipeline
1 parent 110179c commit 64e4648

File tree

1 file changed

+4
-2
lines changed
  • services/static-webserver/client/source/class/osparc/dashboard

1 file changed

+4
-2
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1598,8 +1598,10 @@ qx.Class.define("osparc.dashboard.StudyBrowser", {
15981598
const duplicateStudyButton = this.__getDuplicateMenuButton(studyData);
15991599
menu.add(duplicateStudyButton);
16001600

1601-
const convertToPipelineButton = this.__getConvertToPipelineMenuButton(studyData);
1602-
menu.add(convertToPipelineButton);
1601+
if (writeAccess) {
1602+
const convertToPipelineButton = this.__getConvertToPipelineMenuButton(studyData);
1603+
menu.add(convertToPipelineButton);
1604+
}
16031605

16041606
if (osparc.product.Utils.hasExportCMisEnabled()) {
16051607
const exportStudyButton = this.__getExportCMisMenuButton(studyData);

0 commit comments

Comments
 (0)