diff --git a/src/core/streams/stream_actions.ts b/src/core/streams/stream_actions.ts index b7ab78e9e..0db0d3ba4 100644 --- a/src/core/streams/stream_actions.ts +++ b/src/core/streams/stream_actions.ts @@ -28,9 +28,6 @@ export const StreamActions: { [action: string]: (this: StreamElement) => void } }, update() { - this.targetElements.forEach(e => { - e.innerHTML = "" - e.append(this.templateContent) - }) + this.targetElements.forEach(e => e.replaceChildren(this.templateContent)) } }