Merge branch 'ccp-features' of https://code-repo.d4science.org/gCubeSystem/cdn-experiments into ccp-features

This commit is contained in:
dcore94 2023-06-21 15:47:12 +02:00
commit a20957c98a
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ class CCPMethodEditorController extends HTMLElement{
}else throw "Error saving process: " + resp.status
}).then(data=>{
if(!this.#isupdate){
this.#current = JSon.parse(data)
this.#current = JSON.parse(data)
this.#isupdate = true
this.#tmp_inputs = Object.keys(this.#current.inputs).map(k=>this.#current.inputs[k])
this.#tmp_outputs = Object.keys(this.#current.outputs).map(k=>this.#current.outputs[k])