diff --git a/ccp/js/executionformcontroller.js b/ccp/js/executionformcontroller.js index 7dd1dd3..2d150ba 100644 --- a/ccp/js/executionformcontroller.js +++ b/ccp/js/executionformcontroller.js @@ -120,7 +120,6 @@ class CCPExecutionForm extends HTMLElement{ } loadMethod(){ - this.lockRender() return this.#boot.secureFetch(this.#serviceurl + "/processes/" + this.#method).then( (resp)=>{ if(resp.status === 200){ @@ -135,10 +134,9 @@ class CCPExecutionForm extends HTMLElement{ }).then(resp=>{ this.#data.executable = resp.status === 200 - this.unlockRender() }).then(()=>{ this.showMethod() - }).catch(err=>{alert(err); this.unlockRender()}) + }).catch(err=>alert(err)) } showEmpty(resp){