fixed timing of initial localization of tabulator collapsed column headings

This commit is contained in:
adisposkofh
2026-05-18 14:07:06 +02:00
parent a3dd5a188b
commit 95f09e9114
2 changed files with 12 additions and 10 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ Vue.$collapseFormatter = function (data) {
let item2 = document.createElement("div");
item2.classList.add("col-6");
item.innerHTML = "<strong class=\"collapsedColumnHeading\" field=\"" + col.field + "\">placeholder</strong>";
item.innerHTML = "<strong class=\"collapsedColumnHeading\" tabulator-column-field=\"" + col.field + "\">placeholder</strong>";
item2.innerHTML = col.value ? col.value : "-";
list.appendChild(item);