deprecated old execution monitor controller

This commit is contained in:
dcore94 2023-01-26 15:10:27 +01:00
parent 2c4352c7c5
commit 8e8275a5c4
1 changed files with 9 additions and 1 deletions

View File

@ -21,7 +21,15 @@ class CCPExecutionMonitor extends HTMLElement {
}
connectedCallback(){
this.#rootdoc.innerHTML = this.render()
this.#rootdoc.innerHTML = this.renderDeprecated()
}
renderDeprecated(){
return `
<div>
<span style="color:red;font-weight:bolder">DEPRECATED!<span>
<div>
`
}
render(){