From 261ca98103df24420147b47629f292c1f559bb51 Mon Sep 17 00:00:00 2001 From: claude Date: Sat, 13 Jun 2026 10:58:55 +0000 Subject: [PATCH] build 220: remap tile zoom levels S/M/L MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Old S (0.75×) removed — too small. Old M→S (1×), old L→M (1.35×), new L added at 1.75×. Stored 0.75 in localStorage falls back to 1×. Co-Authored-By: Claude Sonnet 4.6 --- .../project-list/components/project-list-lumiere.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/services/web/frontend/js/features/project-list/components/project-list-lumiere.tsx b/services/web/frontend/js/features/project-list/components/project-list-lumiere.tsx index c051686ed7..41bb396701 100644 --- a/services/web/frontend/js/features/project-list/components/project-list-lumiere.tsx +++ b/services/web/frontend/js/features/project-list/components/project-list-lumiere.tsx @@ -30,11 +30,11 @@ import { TrashProjectButtonTooltip } from './table/cells/action-buttons/trash-pr // ── Tile zoom ───────────────────────────────────────────────────────────────── -type ZoomLevel = 0.75 | 1 | 1.35 +type ZoomLevel = 1 | 1.35 | 1.75 const ZOOM_OPTIONS: { value: ZoomLevel; label: string }[] = [ - { value: 0.75, label: 'S' }, - { value: 1, label: 'M' }, - { value: 1.35, label: 'L' }, + { value: 1, label: 'S' }, + { value: 1.35, label: 'M' }, + { value: 1.75, label: 'L' }, ] const ZOOM_STORAGE_KEY = 'lumiere-card-scale'