diff --git a/services/static-webserver/client/source/class/osparc/dashboard/Dashboard.js b/services/static-webserver/client/source/class/osparc/dashboard/Dashboard.js index dbb68c3241f..4bd888292ed 100644 --- a/services/static-webserver/client/source/class/osparc/dashboard/Dashboard.js +++ b/services/static-webserver/client/source/class/osparc/dashboard/Dashboard.js @@ -120,7 +120,7 @@ qx.Class.define("osparc.dashboard.Dashboard", { buildLayout: this.__createServiceBrowser }); } - if (permissions.canDo("dashboard.data.read")) { + if (permissions.canDo("dashboard.data.read") && osparc.product.Utils.isProduct("osparc")) { tabs.push({ id: "dataTabBtn", label: this.tr("DATA"), diff --git a/services/static-webserver/client/source/class/osparc/data/Permissions.js b/services/static-webserver/client/source/class/osparc/data/Permissions.js index bd99584cf8a..90dfadf612f 100644 --- a/services/static-webserver/client/source/class/osparc/data/Permissions.js +++ b/services/static-webserver/client/source/class/osparc/data/Permissions.js @@ -158,10 +158,9 @@ qx.Class.define("osparc.data.Permissions", { "study.slides.stop" ]; } else if (osparc.product.Utils.isProduct("s4llite")) { - // "services" and "data" tabs only for testers + // "services" tabs only for testers fromUserToTester = [ - "dashboard.services.read", - "dashboard.data.read" + "dashboard.services.read" ]; } fromUserToTester.forEach(onlyTester => {