This commit is contained in:
dcore94 2024-02-02 17:35:59 +01:00
parent cfea15251a
commit a087e4904f
1 changed files with 4 additions and 1 deletions

View File

@ -17,7 +17,10 @@ class CCPExecutionForm extends HTMLElement{
this.connectNewExecutionRequest() this.connectNewExecutionRequest()
const params = new URLSearchParams(window.location.search) const params = new URLSearchParams(window.location.search)
this.#method = params.get('method'); if(params.get('method')){
this.#method = params.get('method')
this.loadMethod()
}
this.render() this.render()
this.showMethod() this.showMethod()