From cea7703ac440c38636ce2abd5baab35a23d05843 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 15 Feb 2026 16:45:35 +0900 Subject: feat(deck): display new card count on deck detail page Add newCardCount alongside Total and Due stats in the deck detail view, queried from cards with state=New via a new countNewCards repository method. Co-Authored-By: Claude Opus 4.6 --- src/client/atoms/decks.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'src/client/atoms/decks.ts') diff --git a/src/client/atoms/decks.ts b/src/client/atoms/decks.ts index 5a4d44e..a0e569f 100644 --- a/src/client/atoms/decks.ts +++ b/src/client/atoms/decks.ts @@ -7,6 +7,7 @@ export interface Deck { name: string; description: string | null; dueCardCount: number; + newCardCount: number; createdAt: string; updatedAt: string; } -- cgit v1.3-1-g0d28