diff --git a/ccp/js/executionformcontroller.js b/ccp/js/executionformcontroller.js index e989161..a72e56c 100644 --- a/ccp/js/executionformcontroller.js +++ b/ccp/js/executionformcontroller.js @@ -163,7 +163,7 @@ class CCPExecutionForm extends HTMLElement{ } const event = new CustomEvent('newexecution', { detail: data.jobID }); document.dispatchEvent(event) - this.#executionmonitor = document.querySelector("d4s-ccp-executionmonitor") + this.#executionmonitor = document.querySelector("d4s-ccp-executionhistory") if(this.#executionmonitor){ this.#executionmonitor.addExecution( { self : data.links[0].href, events : [data], jobID : data.jobID, method : this.#data.title}) }