diff --git a/templates/macros/table/config/home.jinja b/templates/macros/table/config/home.jinja index 91dcba1aa6b8d4cab179e8dca7ee881001ef4c5a..db6bf620cc83d34bd90a622ed238cd5006f3da5a 100644 --- a/templates/macros/table/config/home.jinja +++ b/templates/macros/table/config/home.jinja @@ -436,7 +436,7 @@ }, "dependency": { "system": [ - "kube" + "jsccloud" ] } }, @@ -446,7 +446,7 @@ }, "dependency": { "system": [ - "kube" + "jsccloud" ] }, "triggerSuffix": "input-div" @@ -461,7 +461,7 @@ }, "dependency": { "system": [ - "kube" + "jsccloud" ] } } diff --git a/templates/macros/table/config/workshop.jinja b/templates/macros/table/config/workshop.jinja index 053f44681bef6ef73cfc13de11c518c69e9c3d1d..c3441cbdb0648376c29aa84aba787bba47cf81f2 100644 --- a/templates/macros/table/config/workshop.jinja +++ b/templates/macros/table/config/workshop.jinja @@ -436,7 +436,7 @@ }, "dependency": { "system": [ - "kube" + "jsccloud" ] } }, @@ -446,7 +446,7 @@ }, "dependency": { "system": [ - "kube" + "jsccloud" ] }, "triggerSuffix": "input-div" @@ -461,7 +461,7 @@ }, "dependency": { "system": [ - "kube" + "jsccloud" ] } } diff --git a/templates/macros/table/config/workshop_manager.jinja b/templates/macros/table/config/workshop_manager.jinja index e2b1758f8e90b436e4605f096a06bb3673f50918..9087a05661d6aa49fecc9872646f5d1ae545ba3c 100644 --- a/templates/macros/table/config/workshop_manager.jinja +++ b/templates/macros/table/config/workshop_manager.jinja @@ -731,7 +731,7 @@ }, "dependency": { "system": [ - "kube" + "jsccloud" ] } }, diff --git a/templates/macros/table/table_js.jinja b/templates/macros/table/table_js.jinja index ea7b67a54018de9c98612273e7bf5974bb39b08a..cf95279f957def9de4fdffe05200646e869b9c2e 100644 --- a/templates/macros/table/table_js.jinja +++ b/templates/macros/table/table_js.jinja @@ -57,11 +57,11 @@ }; } Object.entries(value.options).forEach(([optionKey, optionValue]) => { - mappingDict[serviceId]["option"][optionKey] = optionValue.type ?? optionKey; + mappingDict[serviceId]["option"][optionKey] = optionValue.mapping ?? optionKey; }); allSystems.forEach(system => { const backendService = systemConfig[system].backendService; - const systemType = backendServicesConfig[backendService]?.type ?? system; + const systemType = backendServicesConfig[backendService]?.mapping ?? system; if (!Object.keys(mappingDict[serviceId]["system"]).includes(systemType)) { mappingDict[serviceId]["system"][system] = systemType; }