Add task count badge on each column header
File: client/src/components/Board/Column.jsx
Column header shows task count like "3" but it's
a plain unstyled number. Make it a proper badge!
Fix: replace the plain count span with:
{tasks.length}
Literally 3 lines changed — looks way more polished! ✨
No backend needed at all!
Add task count badge on each column header
File: client/src/components/Board/Column.jsx
Column header shows task count like "3" but it's
a plain unstyled number. Make it a proper badge!
Fix: replace the plain count span with:
{tasks.length}
Literally 3 lines changed — looks way more polished! ✨
No backend needed at all!