From 13dbb60d8b94c2ae75bea1cde985a402c91b14f8 Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Mon, 28 Apr 2025 10:38:03 +0200 Subject: [PATCH] ui: fix velement applychanges --- frontend/app/player/web/managers/DOM/VirtualDOM.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/app/player/web/managers/DOM/VirtualDOM.ts b/frontend/app/player/web/managers/DOM/VirtualDOM.ts index daeb7fe4e..15ce85cf4 100644 --- a/frontend/app/player/web/managers/DOM/VirtualDOM.ts +++ b/frontend/app/player/web/managers/DOM/VirtualDOM.ts @@ -257,7 +257,6 @@ export class VElement extends VParent { applyChanges() { this.prioritized && this.applyPrioritizedChanges(); - this.node.data = this.data; this.applyAttributeChanges(); super.applyChanges(); }