avoid resetting method after first save

This commit is contained in:
dcore94 2023-06-21 15:10:57 +02:00
parent ab85b8e473
commit 6cdd2ff5c3
1 changed files with 3 additions and 3 deletions

View File

@ -205,10 +205,10 @@ class CCPMethodEditorController extends HTMLElement{
return resp.text()
}else throw "Error saving process: " + resp.status
}).then(data=>{
if(!this.#isupdate){
this.resetMethod()
}
this.unlockRender()
if(!this.#isupdate){
this.editMethod(this.#current.id)
}
}).catch(err=>{
alert(err)
this.unlockRender()