From 57ead934970c43cbf90c91fa7599c036f8342039 Mon Sep 17 00:00:00 2001 From: Martin Bauer Date: Sat, 12 Sep 2026 21:37:57 +0200 Subject: [PATCH] Apply lock state to category-tile cover previews too Verified the whole reward-lock feature against a real library with an actual browser (Playwright + headless Chromium): the album-grid cards already showed the question-mark placeholder for a locked album, but its 2x2 preview thumbnail in the category-tile view (the screen before drilling into an artist/category) still rendered the real cover art, since that Cover call never received the locked prop. Co-Authored-By: Claude Sonnet 5 --- web/src/components/BrowseView.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/web/src/components/BrowseView.tsx b/web/src/components/BrowseView.tsx index 79eb452..65fe7d6 100644 --- a/web/src/components/BrowseView.tsx +++ b/web/src/components/BrowseView.tsx @@ -728,6 +728,7 @@ function CategoryTile({ fit="height" radius="4px" label={shown.length === 1} + locked={album.locked} /> ))}