From e7ce7b2092c032699f08ecf9735eddc96740ecc3 Mon Sep 17 00:00:00 2001 From: poignatov Date: Sun, 8 Mar 2026 19:37:06 +0300 Subject: [PATCH] =?UTF-8?q?6.4.5:=20=D0=A4=D0=B8=D0=BA=D1=81=20=D1=87?= =?UTF-8?q?=D0=B8=D0=BF=D1=81=D0=B0=20=D0=A1=D0=B5=D0=B3=D0=BE=D0=B4=D0=BD?= =?UTF-8?q?=D1=8F=20=D0=B4=D0=BB=D1=8F=20=D1=82=D0=BE=D0=B2=D0=B0=D1=80?= =?UTF-8?q?=D0=BE=D0=B2=20=D0=B1=D0=B5=D0=B7=20=D0=B4=D0=B0=D1=82=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VERSION | 2 +- play-life-web/package.json | 2 +- play-life-web/src/components/ShoppingList.jsx | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/VERSION b/VERSION index 49df80b..7d765da 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.4.4 +6.4.5 diff --git a/play-life-web/package.json b/play-life-web/package.json index a256893..7232618 100644 --- a/play-life-web/package.json +++ b/play-life-web/package.json @@ -1,6 +1,6 @@ { "name": "play-life-web", - "version": "6.4.4", + "version": "6.4.5", "type": "module", "scripts": { "dev": "vite", diff --git a/play-life-web/src/components/ShoppingList.jsx b/play-life-web/src/components/ShoppingList.jsx index 4ef9702..4fd8299 100644 --- a/play-life-web/src/components/ShoppingList.jsx +++ b/play-life-web/src/components/ShoppingList.jsx @@ -712,8 +712,8 @@ function ShoppingList({ onNavigate, refreshTrigger = 0, isActive = false, initia } const isTomorrow = nextShowAtStr === tomorrowStr - // Показываем "Сегодня" только если дата строго в будущем (null, сегодня и прошлое — не показываем) - const showTodayChip = !!nextShowAtStr && nextShowAtStr > todayStr + // Показываем "Сегодня" если нет даты, или дата строго в будущем (сегодня и прошлое — не показываем) + const showTodayChip = !nextShowAtStr || nextShowAtStr > todayStr // Дата "по плану" const item = selectedItemForPostpone