aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/client/pages/DeckCardsPage.tsx
diff options
context:
space:
mode:
authornsfisis <54318333+nsfisis@users.noreply.github.com>2026-02-17 22:20:49 +0900
committerGitHub <noreply@github.com>2026-02-17 22:20:49 +0900
commitcdb2c534992c2829ad2abe61fcf3f69df6bf0891 (patch)
tree50c20100a34f67a2f2afdfdb606ecdf4bf9fa0b2 /src/client/pages/DeckCardsPage.tsx
parentee165ad0b3ac0bc5bb01b327238818d15faa6e4b (diff)
parent3fc28ecfc649ac1b3223d68f1e08a96e46de59d2 (diff)
downloadkioku-cdb2c534992c2829ad2abe61fcf3f69df6bf0891.tar.gz
kioku-cdb2c534992c2829ad2abe61fcf3f69df6bf0891.tar.zst
kioku-cdb2c534992c2829ad2abe61fcf3f69df6bf0891.zip
Merge pull request #16 from nsfisis/claude/add-card-difficulty-level-BGN2C
Display card difficulty for reviewed cards in deck view
Diffstat (limited to 'src/client/pages/DeckCardsPage.tsx')
-rw-r--r--src/client/pages/DeckCardsPage.tsx5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/client/pages/DeckCardsPage.tsx b/src/client/pages/DeckCardsPage.tsx
index 2b2ca88..8c839da 100644
--- a/src/client/pages/DeckCardsPage.tsx
+++ b/src/client/pages/DeckCardsPage.tsx
@@ -162,6 +162,11 @@ function NoteGroupCard({
{card.lapses > 0 && (
<span className="text-muted">{card.lapses} lapses</span>
)}
+ {card.difficulty > 0 && (
+ <span className="text-muted">
+ D: {card.difficulty.toFixed(1)}
+ </span>
+ )}
</div>
))}
</div>