From f6b7a5d7a203219ab3d3eaabababab8f3f3081f2 Mon Sep 17 00:00:00 2001 From: mARTin Date: Sun, 8 Mar 2026 00:51:15 +0100 Subject: [PATCH] fix: move provider icon to flex sibling of task text for reliable visibility Provider icon is now a sibling flex item inside .weekly-task-text (same level as checkbox), not nested inside the title text span. Larger size (11px) and higher opacity (0.6) for better visibility. v1.15.8 Co-Authored-By: Claude Opus 4.6 --- package-lock.json | 4 ++-- package.json | 2 +- src/components/WeeklyView.tsx | 30 +++++++++++++++++------------- 3 files changed, 20 insertions(+), 16 deletions(-) diff --git a/package-lock.json b/package-lock.json index d4326c9..e823d92 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "my-weekly-todo-list", - "version": "1.15.7", + "version": "1.15.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "my-weekly-todo-list", - "version": "1.15.7", + "version": "1.15.8", "license": "MIT", "dependencies": { "@auth/prisma-adapter": "^2.11.1", diff --git a/package.json b/package.json index e068a24..d160429 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "my-weekly-todo-list", - "version": "1.15.7", + "version": "1.15.8", "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 660b628..536ca16 100644 --- a/src/components/WeeklyView.tsx +++ b/src/components/WeeklyView.tsx @@ -7006,20 +7006,24 @@ function TaskItem({ }} > {task.title} - {task.externalProvider && !isSomeday && ( - - {task.externalProvider === "google" ? ( - - ) : task.externalProvider === "outlook" ? ( - - ) : task.externalProvider === "apple" ? ( - - ) : task.externalProvider === "synology" ? ( - - ) : null} - - )} + {task.externalProvider && !isSomeday && ( + + {task.externalProvider === "google" ? ( + + ) : task.externalProvider === "outlook" ? ( + + ) : task.externalProvider === "apple" ? ( + + ) : task.externalProvider === "synology" ? ( + + ) : null} + + )} {/* Subtask indicator - toggles subtask list */}