fixed typo
This commit is contained in:
parent
6d779e3862
commit
5d3d3542cb
|
@ -206,7 +206,7 @@ class CCPMethodEditorController extends HTMLElement{
|
||||||
}else throw "Error saving process: " + resp.status
|
}else throw "Error saving process: " + resp.status
|
||||||
}).then(data=>{
|
}).then(data=>{
|
||||||
if(!this.#isupdate){
|
if(!this.#isupdate){
|
||||||
this.#current = JSon.parse(data)
|
this.#current = JSON.parse(data)
|
||||||
this.#isupdate = true
|
this.#isupdate = true
|
||||||
this.#tmp_inputs = Object.keys(this.#current.inputs).map(k=>this.#current.inputs[k])
|
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])
|
this.#tmp_outputs = Object.keys(this.#current.outputs).map(k=>this.#current.outputs[k])
|
||||||
|
|
Loading…
Reference in New Issue