From 2104fea5e2d79c1f02918f08c25aca2a7e203dbb Mon Sep 17 00:00:00 2001 From: poignatov Date: Tue, 17 Mar 2026 10:29:52 +0300 Subject: [PATCH] =?UTF-8?q?6.19.2:=20=D0=A4=D0=B8=D0=BA=D1=81=20=D0=BA?= =?UTF-8?q?=D0=BD=D0=BE=D0=BF=D0=BA=D0=B8=20=D1=81=D0=BE=D1=85=D1=80=D0=B0?= =?UTF-8?q?=D0=BD=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=B2=20=D0=BF=D1=80=D0=B8?= =?UTF-8?q?=D0=BE=D1=80=D0=B8=D1=82=D0=B5=D1=82=D0=B0=D1=85?= 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/App.jsx | 7 ++++--- play-life-web/src/components/ProjectPriorityManager.jsx | 5 ++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/VERSION b/VERSION index 60a019c..daf4ba0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.19.1 +6.19.2 diff --git a/play-life-web/package.json b/play-life-web/package.json index 110da31..0f5e8e6 100644 --- a/play-life-web/package.json +++ b/play-life-web/package.json @@ -1,6 +1,6 @@ { "name": "play-life-web", - "version": "6.19.1", + "version": "6.19.2", "type": "module", "scripts": { "dev": "vite", diff --git a/play-life-web/src/App.jsx b/play-life-web/src/App.jsx index 4422b41..960356e 100644 --- a/play-life-web/src/App.jsx +++ b/play-life-web/src/App.jsx @@ -1167,8 +1167,6 @@ function AppContent() { let paddingClasses = '' if (tabName === 'current' || tabName === 'tasks' || tabName === 'wishlist' || tabName === 'profile') { paddingClasses = 'pb-20' - } else if (tabName === 'priorities') { - paddingClasses = 'pb-20' } else if (tabName === 'words' || tabName === 'dictionaries' || tabName === 'shopping') { paddingClasses = 'pb-16' } @@ -1184,7 +1182,10 @@ function AppContent() { if (tabName === 'current') { return 'max-w-7xl mx-auto p-4 md:p-6' } - if (tabName === 'full' || tabName === 'priorities' || tabName === 'dictionaries' || tabName === 'words' || tabName === 'shopping' || tabName === 'shopping-item-history' || tabName === 'purchase') { + if (tabName === 'priorities') { + return 'max-w-2xl mx-auto px-4 h-full' + } + if (tabName === 'full' || tabName === 'dictionaries' || tabName === 'words' || tabName === 'shopping' || tabName === 'shopping-item-history' || tabName === 'purchase') { return 'max-w-7xl mx-auto px-4 md:px-8 py-0' } // Fullscreen табы без отступов diff --git a/play-life-web/src/components/ProjectPriorityManager.jsx b/play-life-web/src/components/ProjectPriorityManager.jsx index 028a679..fea3799 100644 --- a/play-life-web/src/components/ProjectPriorityManager.jsx +++ b/play-life-web/src/components/ProjectPriorityManager.jsx @@ -629,7 +629,6 @@ function ProjectPriorityManager({ allProjectsData, currentWeekData, shouldLoad, if (onConfirmed) onConfirmed() } catch (e) { setToastMessage({ text: e.message || 'Ошибка сохранения', type: 'error' }) - } finally { setIsSaving(false) } }, [authFetch, buildAssignments, onConfirmed]) @@ -1061,7 +1060,7 @@ function ProjectPriorityManager({ allProjectsData, currentWeekData, shouldLoad, /> )} -
{isSaving ? 'Сохранение...' : 'Сохранить'} -
+ } {toastMessage && (