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 2b7a453 commit 2f82eb1Copy full SHA for 2f82eb1
services/static-webserver/client/source/class/osparc/desktop/StudyEditor.js
@@ -208,11 +208,20 @@ qx.Class.define("osparc.desktop.StudyEditor", {
208
});
209
210
const pageContext = study.getUi().getMode();
211
- this.setPageContext(pageContext);
+ switch (pageContext) {
212
+ case "guided":
213
+ case "app":
214
+ this.__slideshowView.startSlides();
215
+ break;
216
+ default:
217
+ this.__workbenchView.openFirstNode();
218
219
+ }
220
this.addListener("changePageContext", e => {
221
const pageCxt = e.getData();
222
study.getUi().setMode(pageCxt);
223
224
+ this.setPageContext(pageContext);
225
226
const workbench = study.getWorkbench();
227
workbench.addListener("retrieveInputs", e => {
0 commit comments