From 95ed1b48fea0f6321bdbad971d33536cd5cb778b Mon Sep 17 00:00:00 2001 From: poignatov Date: Fri, 13 Mar 2026 14:54:16 +0300 Subject: [PATCH] =?UTF-8?q?6.15.2:=20=D0=9E=D0=B1=D1=89=D0=B0=D1=8F=20?= =?UTF-8?q?=D1=81=D1=82=D1=80=D0=B0=D1=82=D0=B5=D0=B3=D0=B8=D1=8F=20=D0=BF?= =?UTF-8?q?=D0=BE=20=D1=83=D0=BC=D0=BE=D0=BB=D1=87=D0=B0=D0=BD=D0=B8=D1=8E?= =?UTF-8?q?=20=D0=B4=D0=BB=D1=8F=20=D0=B7=D0=B0=D0=B4=D0=B0=D1=87-=D0=B6?= =?UTF-8?q?=D0=B5=D0=BB=D0=B0=D0=BD=D0=B8=D0=B9?= 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/TaskForm.jsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index d36e8d8..0bffdbe 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.15.1 +6.15.2 diff --git a/play-life-web/package.json b/play-life-web/package.json index fca43f3..9aa1ce7 100644 --- a/play-life-web/package.json +++ b/play-life-web/package.json @@ -1,6 +1,6 @@ { "name": "play-life-web", - "version": "6.15.1", + "version": "6.15.2", "type": "module", "scripts": { "dev": "vite", diff --git a/play-life-web/src/components/TaskForm.jsx b/play-life-web/src/components/TaskForm.jsx index bd1e81e..ef6ff87 100644 --- a/play-life-web/src/components/TaskForm.jsx +++ b/play-life-web/src/components/TaskForm.jsx @@ -28,7 +28,7 @@ function TaskForm({ onNavigate, taskId, wishlistId, returnTo, returnWishlistId } const [isDeleting, setIsDeleting] = useState(false) const [wishlistInfo, setWishlistInfo] = useState(null) // Информация о связанном желании const [currentWishlistId, setCurrentWishlistId] = useState(null) // Текущий wishlist_id задачи - const [rewardPolicy, setRewardPolicy] = useState('personal') // Политика награждения: 'personal' или 'general' + const [rewardPolicy, setRewardPolicy] = useState('general') // Политика награждения: 'personal' или 'general' // Test-specific state const [isTest, setIsTest] = useState(false) const [wordsCount, setWordsCount] = useState('10')