From 21a0547f3d717c6e68d50544d7b4c6706b9f5166 Mon Sep 17 00:00:00 2001 From: mARTin Date: Mon, 23 Mar 2026 00:30:39 +0100 Subject: [PATCH] fix: hide add-task input when someday list delete confirmation is shown The "Add task..." input was overlapping the Cancel/Delete buttons, making it impossible to click Delete. v1.57.9 Co-Authored-By: Claude Opus 4.6 --- package.json | 2 +- src/components/WeeklyView.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index f093a89..dae0eba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "my-weekly-todo-list", - "version": "1.57.8", + "version": "1.57.9", "description": "A web-based weekly task management application that organizes to-dos and calendar events in a single, intuitive weekly view", "main": "index.js", "scripts": { diff --git a/src/components/WeeklyView.tsx b/src/components/WeeklyView.tsx index f2a2162..78e1e0a 100644 --- a/src/components/WeeklyView.tsx +++ b/src/components/WeeklyView.tsx @@ -8227,7 +8227,7 @@ export default function WeeklyView() { return ( <> - { const occupiedSlots = list.tasks.map(t => t.somedaySlotIndex).filter(s => s !== null && s !== undefined) as number[]; @@ -8267,7 +8267,7 @@ export default function WeeklyView() { console.error(e); } }} - /> + />} {finalSlots.map((slot) => { const isTarget = dropPreview?.listId === list.id && dropPreview?.slotIdx === slot.index; const task = slot.task;