diff --git a/ccp/js/executionformcontroller.js b/ccp/js/executionformcontroller.js index c994987..41ff9fd 100644 --- a/ccp/js/executionformcontroller.js +++ b/ccp/js/executionformcontroller.js @@ -17,7 +17,10 @@ class CCPExecutionForm extends HTMLElement{ this.connectNewExecutionRequest() 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.showMethod()