Skip to content

Commit 7facb7a

Browse files
committed
"pipeline" uiMode
1 parent 9155dfa commit 7facb7a

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,12 @@ qx.Class.define("osparc.dashboard.CardBase", {
384384
},
385385

386386
uiMode: {
387-
check: ["workbench", "guided", "app", "standalone"], // "guided" is no longer used
387+
check: [
388+
"workbench", // =auto, the frontend decides the icon and default view
389+
"app", "guided", // "guided" is no longer used
390+
"standalone",
391+
"pipeline",
392+
],
388393
nullable: true,
389394
apply: "__applyUiMode"
390395
},

services/static-webserver/client/source/class/osparc/data/model/StudyUI.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,12 @@ qx.Class.define("osparc.data.model.StudyUI", {
6363
},
6464

6565
mode: {
66-
check: ["workbench", "guided", "app", "standalone"], // "guided" is no longer used
66+
check: [
67+
"workbench", // =auto, the frontend decides the icon and default view
68+
"app", "guided", // "guided" is no longer used
69+
"standalone",
70+
"pipeline",
71+
],
6772
init: "workbench",
6873
nullable: true,
6974
event: "changeMode",

0 commit comments

Comments
 (0)