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 59e395d commit 15d0d3bCopy full SHA for 15d0d3b
services/static-webserver/client/source/class/osparc/study/Utils.js
@@ -205,6 +205,13 @@ qx.Class.define("osparc.study.Utils", {
205
return pollTasks.createPollingTask(fetchPromise)
206
},
207
208
+ extractTemplateType: function(templateData) {
209
+ if (templateData && templateData["ui"] && templateData["ui"]["templateType"]) {
210
+ return templateData["ui"]["templateType"];
211
+ }
212
+ return null;
213
+ },
214
+
215
isAnyLinkedNodeMissing: function(studyData) {
216
const existingNodeIds = Object.keys(studyData["workbench"]);
217
const linkedNodeIds = osparc.data.model.Workbench.getLinkedNodeIds(studyData["workbench"]);
0 commit comments