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