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:28:13 +02:00
commit f4f1ad0756
1 changed files with 6 additions and 3 deletions

View File

@ -205,10 +205,13 @@ class CCPMethodEditorController extends HTMLElement{
return resp.text()
}else throw "Error saving process: " + resp.status
}).then(data=>{
this.unlockRender()
if(!this.#isupdate){
this.editMethod(this.#current.id)
this.#current = 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])
}
this.unlockRender()
}).catch(err=>{
alert(err)
this.unlockRender()
@ -353,7 +356,7 @@ class CCPMethodEditorController extends HTMLElement{
this.#rootdoc.querySelector(".plexiglass").classList.toggle("d-none")
this.render()
this.#locked = false
this.parentElement.scrollIntoViewIfNeeded()
if(this.parentElement) this.parentElement.scrollIntoViewIfNeeded();
}
render(){