cannot enable plexiglass on method load

This commit is contained in:
dcore94 2023-03-20 11:10:23 +01:00
parent 6d9989f352
commit df2404a397
1 changed files with 1 additions and 3 deletions

View File

@ -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){