From 31457f868dd46a7bea1a85adfbe9f7e1a10eab7b Mon Sep 17 00:00:00 2001 From: Phat Pham Date: Tue, 23 Jun 2026 18:53:49 +0700 Subject: [PATCH] feat: rename "All" filter button to "For You" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The label-only rename, decoupled from AI personalization (which lands in a later PR): with no personalization configured this button keeps behaving exactly like the old "All" — same source filter, same /api/items request. Co-Authored-By: Claude Sonnet 4.6 --- core/render.ts | 2 +- platforms/cloudflare/src/index.ts | 2 +- web-static/static/app.js | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/core/render.ts b/core/render.ts index 6a80b9c..4fb00ab 100644 --- a/core/render.ts +++ b/core/render.ts @@ -56,7 +56,7 @@ function sourceIconPath(source: string): string { function renderFilterButton(filter: SourceFilterView): string { const activeClass = filter.active ? " is-active" : ""; if (filter.key === "all") { - return ``; + return ``; } return ``; + return ``; } return ``; })