185 files

This commit is contained in:
Home Assistant Version Control
2026-08-19 11:38:13 +00:00
parent 5f9330abd7
commit a718af6423
185 changed files with 16868 additions and 3088 deletions
@@ -856,7 +856,6 @@ class TaskMateReorderCard extends LitElement {
const chores = attrs.chores || [];
const childChores = this._getChoresForChild(chores, child.id);
const pointsIcon = attrs.points_icon || "mdi:star";
const header = html`
<div class="tmd-hd" style="--ac:var(--tmd-c1)">
@@ -913,7 +912,7 @@ class TaskMateReorderCard extends LitElement {
</div>
<div class="d-list">
${allCategoryChores.map((chore, index) =>
this._renderDesignedChoreItem(chore, index, allCategoryChores.length, category, pointsIcon)
this._renderDesignedChoreItem(chore, index, allCategoryChores.length, category)
)}
</div>`;
})}
@@ -922,7 +921,7 @@ class TaskMateReorderCard extends LitElement {
`;
}
_renderDesignedChoreItem(chore, index, total, category, pointsIcon) {
_renderDesignedChoreItem(chore, index, total, category) {
const isFirst = index === 0;
const isLast = index === total - 1;
const v = window.__taskmate_chore_visual(chore);