diff --git a/packages/dashboard/app/components/ListView.css b/packages/dashboard/app/components/ListView.css index 5628699b74..327375c272 100644 --- a/packages/dashboard/app/components/ListView.css +++ b/packages/dashboard/app/components/ListView.css @@ -17,12 +17,12 @@ background: var(--surface); } +/* FNXC:ListView 2026-06-23-00:00: No border below the controls — the toolbar (Bulk Edit / View options / New Task) flows straight into the quick-add box with no divider between them. */ .list-sidebar-controls { display: flex; flex-direction: column; gap: var(--space-sm); padding: var(--space-md) var(--space-xl); - border-bottom: 1px solid var(--border); background: var(--surface); } diff --git a/packages/dashboard/app/components/ListView.tsx b/packages/dashboard/app/components/ListView.tsx index 9d9dabc036..071e0b2b03 100644 --- a/packages/dashboard/app/components/ListView.tsx +++ b/packages/dashboard/app/components/ListView.tsx @@ -1985,15 +1985,8 @@ export function ListView({ */}
{renderWorkflowSelector()} + {/* FNXC:ListView 2026-06-23-00:00: The "X of Y tasks" count is removed from the sidebar toolbar per user request — the Bulk Edit / View options / New Task actions are the sole content of this row. */}
-

- {selectedColumn - ? t("listView.statsInColumn", "{{count}} of {{total}} tasks in {{column}}", { count: filteredCount, total: tasks.length, column: getListColumnLabel(selectedColumn) }) - : t("listView.stats", "{{count}} of {{total}} tasks", { count: filteredCount, total: tasks.length })} - {hiddenCompletedCount > 0 && !selectedColumn && ( - ({t("listView.hidden", "{{count}} hidden", { count: hiddenCompletedCount })}) - )} -