From 4ecbef361b79c34c913b4444c26365a58b9c9aea Mon Sep 17 00:00:00 2001 From: sadegh Date: Tue, 9 Jun 2026 19:21:59 +0330 Subject: [PATCH] feat(board): show card count next to the list title Display the number of cards in each list as a small badge after the list title in the stack header. The count reuses the existing cardsByStack computed, so it follows the archived/active filter and stays reactive as cards are added, moved or removed. The badge does not shrink, keeping it visible when a long title is truncated. Signed-off-by: sadegh Co-Authored-By: Claude Opus 4.8 (1M context) --- src/components/board/Stack.vue | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/components/board/Stack.vue b/src/components/board/Stack.vue index b208dccc8..0531548e6 100644 --- a/src/components/board/Stack.vue +++ b/src/components/board/Stack.vue @@ -15,6 +15,7 @@ + {{ cardsByStack.length }}

+ {{ cardsByStack.length }}