fix: Korrigiere falsche DOM-Element-ID von flex-actio-panel auf flex-action-panel

This commit is contained in:
Developer 02
2024-07-25 17:13:11 +02:00
parent 0d591d5350
commit 812bf9b25a
3 changed files with 3 additions and 3 deletions

View File

@@ -40,7 +40,7 @@ class Comp {
static ActPanel = class {
static __Root;
static get Root() {
Comp.ActPanel.__Root ??= document.getElementById("flex-actio-panel")
Comp.ActPanel.__Root ??= document.getElementById("flex-action-panel")
return Comp.ActPanel.__Root
}