6.4.5: Фикс чипса Сегодня для товаров без даты
Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled

This commit is contained in:
poignatov
2026-03-08 19:37:06 +03:00
parent 81de26e586
commit e7ce7b2092
3 changed files with 4 additions and 4 deletions

View File

@@ -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