From 47097e52514015832b5e560ebf39b2ce5f6e21db Mon Sep 17 00:00:00 2001 From: Joaquin Pereyra Date: Wed, 25 Jun 2025 16:24:42 -0300 Subject: [PATCH] FIX: tagify bug rootEl not exist --- module/applications/sheets/api/application-mixin.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/applications/sheets/api/application-mixin.mjs b/module/applications/sheets/api/application-mixin.mjs index 663dd9eb..42e1615d 100644 --- a/module/applications/sheets/api/application-mixin.mjs +++ b/module/applications/sheets/api/application-mixin.mjs @@ -102,7 +102,7 @@ export default function DHApplicationMixin(Base) { } // Find target element - const element = rootEl.querySelector(selector); + const element = this.element.querySelector(selector); if (!element) { console.warn(`Element not found with selector: ${selector}`); return;