diff --git a/VERSION b/VERSION index bafdf70..2c9b9c3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.20.0 +4.20.1 diff --git a/play-life-web/package.json b/play-life-web/package.json index cdf2a75..2582cec 100644 --- a/play-life-web/package.json +++ b/play-life-web/package.json @@ -1,6 +1,6 @@ { "name": "play-life-web", - "version": "4.20.0", + "version": "4.20.1", "type": "module", "scripts": { "dev": "vite", diff --git a/play-life-web/src/components/WishlistDetail.jsx b/play-life-web/src/components/WishlistDetail.jsx index 214c4b3..0d06e98 100644 --- a/play-life-web/src/components/WishlistDetail.jsx +++ b/play-life-web/src/components/WishlistDetail.jsx @@ -153,7 +153,7 @@ function WishlistDetail({ wishlistId, onNavigate, onRefresh, boardId, onClose, p const handleTaskItemClick = () => { if (wishlistItem?.linked_task) { - onNavigate?.('task-form', { taskId: wishlistItem.linked_task.id }) + setSelectedTaskForDetail(wishlistItem.linked_task.id) } }