Vanessa 2025-11-14 10:13:41 +08:00
parent 734fdda6fb
commit 84e2668c0f

View file

@ -22,7 +22,7 @@ const getKanbanTitleHTML = (group: IAVView, counter: number) => {
nameHTML += `<span class="b3-chip" style="background-color:var(--b3-font-background${item.color});color:var(--b3-font-color${item.color})">${escapeHtml(item.content)}</span>`;
});
} else if (group.groupValue.type === "checkbox") {
nameHTML = `<svg style="width:calc(1.625em - 12px);height:calc(1.625em - 12px)"><use xlink:href="#icon${group.groupValue.checkbox.checked ? "Check" : "Uncheck"}"></use></svg>`;
nameHTML = `<svg style="width:calc(1.625em - 12px);height:calc(1.625em - 12px);margin: 4px 0;float: left;"><use xlink:href="#icon${group.groupValue.checkbox.checked ? "Check" : "Uncheck"}"></use></svg>`;
} else {
nameHTML = group.name;
}