From 1795a66ee111d58e92999a8251ec00d5e7b77fff Mon Sep 17 00:00:00 2001 From: poignatov Date: Thu, 19 Mar 2026 20:22:06 +0300 Subject: [PATCH] =?UTF-8?q?6.25.2:=20=D0=92=D1=8B=D1=80=D0=B0=D0=B2=D0=BD?= =?UTF-8?q?=D0=B8=D0=B2=D0=B0=D0=BD=D0=B8=D0=B5=20=D1=82=D0=B5=D0=BA=D1=81?= =?UTF-8?q?=D1=82=D0=B0=20=D0=B2=20=D1=81=D0=B5=D0=BB=D0=B5=D0=BA=D1=82?= =?UTF-8?q?=D0=BE=D1=80=D0=B5=20=D0=B4=D0=BE=D1=81=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- VERSION | 2 +- play-life-web/package.json | 2 +- play-life-web/src/components/BoardSelector.css | 1 + play-life-web/src/components/PurchaseScreen.jsx | 2 +- play-life-web/src/components/ShoppingList.jsx | 4 ++-- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/VERSION b/VERSION index 41ce415..aec9b10 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.25.1 +6.25.2 diff --git a/play-life-web/package.json b/play-life-web/package.json index 9b1e61f..83e276c 100644 --- a/play-life-web/package.json +++ b/play-life-web/package.json @@ -1,6 +1,6 @@ { "name": "play-life-web", - "version": "6.25.1", + "version": "6.25.2", "type": "module", "scripts": { "dev": "vite", diff --git a/play-life-web/src/components/BoardSelector.css b/play-life-web/src/components/BoardSelector.css index e3033c8..017a165 100644 --- a/play-life-web/src/components/BoardSelector.css +++ b/play-life-web/src/components/BoardSelector.css @@ -67,6 +67,7 @@ overflow: hidden; text-overflow: ellipsis; white-space: nowrap; + line-height: 1; } .board-label-archived { diff --git a/play-life-web/src/components/PurchaseScreen.jsx b/play-life-web/src/components/PurchaseScreen.jsx index 0be3db4..22f9b5f 100644 --- a/play-life-web/src/components/PurchaseScreen.jsx +++ b/play-life-web/src/components/PurchaseScreen.jsx @@ -388,7 +388,7 @@ function PurchaseScreen({ onNavigate, purchaseConfigId, taskId, taskName }) { {item.name} {item.estimated_remaining > 0 && ( - ~{Math.round(item.estimated_remaining * 10) / 10} + ({Math.round(item.estimated_remaining * 10) / 10}) )} diff --git a/play-life-web/src/components/ShoppingList.jsx b/play-life-web/src/components/ShoppingList.jsx index 4901cdc..2559b05 100644 --- a/play-life-web/src/components/ShoppingList.jsx +++ b/play-life-web/src/components/ShoppingList.jsx @@ -730,7 +730,7 @@ function ShoppingList({ onNavigate, refreshTrigger = 0, isActive = false, initia {item.name} {item.estimated_remaining > 0 && ( - ~{Math.round(item.estimated_remaining * 10) / 10} + ({Math.round(item.estimated_remaining * 10) / 10}) )} @@ -801,7 +801,7 @@ function ShoppingList({ onNavigate, refreshTrigger = 0, isActive = false, initia {item.name} {item.estimated_remaining > 0 && ( - ~{Math.round(item.estimated_remaining * 10) / 10} + ({Math.round(item.estimated_remaining * 10) / 10}) )}