diff --git a/cheddahbot/api.py b/cheddahbot/api.py index b5c5d1f..6b56337 100644 --- a/cheddahbot/api.py +++ b/cheddahbot/api.py @@ -313,8 +313,6 @@ def _count_lb_statuses(tasks: list[dict]) -> dict[str, int]: continue due = t.get("due_date") if not due: - # No due date — still count it (it's active work) - counts[s] = counts.get(s, 0) + 1 continue try: if int(due) >= prev_start_ms: diff --git a/dashboard/index.html b/dashboard/index.html index 3ed3169..8e705f4 100644 --- a/dashboard/index.html +++ b/dashboard/index.html @@ -709,11 +709,6 @@ async function loadLinkBuilding() {
${data.total || 0}
Work Category: Link Building
-
-
Companies
-
${data.companies?.length || 0}
-
${data.companies?.map(c => c.name).join(', ') || 'None'}
-
${renderStatusCountCards(data.status_counts)} ${renderNextMonthCard(data.next_month_count)} `;