FIX: tagify bug rootEl not exist

This commit is contained in:
Joaquin Pereyra 2025-06-25 16:24:42 -03:00
parent 5eab093ac4
commit 47097e5251

View file

@ -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;