From 2a61b17187fe2414d3beaadd9faaabf14df9274d Mon Sep 17 00:00:00 2001 From: poignatov Date: Wed, 11 Mar 2026 09:46:41 +0300 Subject: [PATCH] =?UTF-8?q?6.12.0:=20=D0=A3=D0=BB=D1=83=D1=87=D1=88=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D1=8F=20=D0=B1=D0=BB=D0=BE=D0=BA=D0=B0=20=D0=B2?= =?UTF-8?q?=D1=8B=D0=B1=D0=BE=D1=80=D0=B0=20=D0=B4=D0=BE=D1=81=D0=BA=D0=B8?= =?UTF-8?q?=20=D0=B2=20=D1=82=D0=BE=D0=B2=D0=B0=D1=80=D0=B0=D1=85=20=D0=B8?= =?UTF-8?q?=20=D0=B6=D0=B5=D0=BB=D0=B0=D0=BD=D0=B8=D1=8F=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/components/BoardSelector.jsx | 5 +++-- play-life-web/src/components/ShoppingList.css | 2 ++ play-life-web/src/components/ShoppingList.jsx | 1 + play-life-web/src/components/Wishlist.jsx | 2 ++ 6 files changed, 10 insertions(+), 4 deletions(-) diff --git a/VERSION b/VERSION index a003776..d4e6cb4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.11.5 +6.12.0 diff --git a/play-life-web/package.json b/play-life-web/package.json index 4869aef..251c79a 100644 --- a/play-life-web/package.json +++ b/play-life-web/package.json @@ -1,6 +1,6 @@ { "name": "play-life-web", - "version": "6.11.5", + "version": "6.12.0", "type": "module", "scripts": { "dev": "vite", diff --git a/play-life-web/src/components/BoardSelector.jsx b/play-life-web/src/components/BoardSelector.jsx index c007e7c..8438b6a 100644 --- a/play-life-web/src/components/BoardSelector.jsx +++ b/play-life-web/src/components/BoardSelector.jsx @@ -7,7 +7,8 @@ function BoardSelector({ onBoardChange, onBoardEdit, onAddBoard, - loading + loading, + showBoardAction = true }) { const [isOpen, setIsOpen] = useState(false) const dropdownRef = useRef(null) @@ -106,7 +107,7 @@ function BoardSelector({ Создать доску - {selectedBoard && ( + {selectedBoard && showBoardAction && ( diff --git a/play-life-web/src/components/Wishlist.jsx b/play-life-web/src/components/Wishlist.jsx index 6c9ac7b..8aa491a 100644 --- a/play-life-web/src/components/Wishlist.jsx +++ b/play-life-web/src/components/Wishlist.jsx @@ -680,6 +680,7 @@ function Wishlist({ onNavigate, refreshTrigger = 0, isActive = false, initialBoa onBoardEdit={handleBoardEdit} onAddBoard={handleAddBoard} loading={boardsLoading} + showBoardAction={false} /> fetchItems()} /> @@ -696,6 +697,7 @@ function Wishlist({ onNavigate, refreshTrigger = 0, isActive = false, initialBoa onBoardEdit={handleBoardEdit} onAddBoard={handleAddBoard} loading={boardsLoading} + showBoardAction={false} /> {/* Основной список */}