From ba6d8233546d619a004bebeef8fd315d010b1101 Mon Sep 17 00:00:00 2001 From: poignatov Date: Tue, 24 Feb 2026 15:59:51 +0300 Subject: [PATCH] =?UTF-8?q?5.3.3:=20=D0=A1=D0=BA=D1=80=D1=8B=D1=82=D0=B8?= =?UTF-8?q?=D0=B5=20=D0=B4=D0=B0=D1=82=D1=8B=20=D0=B2=20=D1=81=D0=BF=D0=B8?= =?UTF-8?q?=D1=81=D0=BA=D0=B5=20=D0=B4=D0=BB=D1=8F=20=D1=81=D0=B5=D0=B3?= =?UTF-8?q?=D0=BE=D0=B4=D0=BD=D1=8F=20=D0=B8=20=D0=BF=D1=80=D0=BE=D1=88?= =?UTF-8?q?=D0=BB=D0=BE=D0=B3=D0=BE?= 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/TaskList.jsx | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/VERSION b/VERSION index 84197c8..74664af 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.3.2 +5.3.3 diff --git a/play-life-web/package.json b/play-life-web/package.json index 5efb150..b72b546 100644 --- a/play-life-web/package.json +++ b/play-life-web/package.json @@ -1,6 +1,6 @@ { "name": "play-life-web", - "version": "5.3.2", + "version": "5.3.3", "type": "module", "scripts": { "dev": "vite", diff --git a/play-life-web/src/components/TaskList.jsx b/play-life-web/src/components/TaskList.jsx index 25fc4ac..52dd495 100644 --- a/play-life-web/src/components/TaskList.jsx +++ b/play-life-web/src/components/TaskList.jsx @@ -881,8 +881,8 @@ function TaskList({ onNavigate, data, loading, backgroundLoading, error, onRetry const tomorrowNormalized = new Date(todayNormalized) tomorrowNormalized.setDate(tomorrowNormalized.getDate() + 1) - // Не показываем текст если дата равна сегодня - if (showDateNormalized.getTime() === todayNormalized.getTime()) { + // Не показываем дату если она сегодня или в прошлом + if (showDateNormalized.getTime() <= todayNormalized.getTime()) { return null }