fix: hide provider icons on someday tasks, show only when moved to weekday slots

v1.15.3

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
mARTin 2026-03-08 00:08:44 +01:00
parent 57c1c0e1c3
commit 609874b288
3 changed files with 5 additions and 5 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "my-weekly-todo-list",
"version": "1.15.2",
"version": "1.15.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "my-weekly-todo-list",
"version": "1.15.2",
"version": "1.15.3",
"license": "MIT",
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",

View File

@ -1,6 +1,6 @@
{
"name": "my-weekly-todo-list",
"version": "1.15.2",
"version": "1.15.3",
"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": {

View File

@ -7308,8 +7308,8 @@ function TaskItem({
</button>
</div>
{/* Provider icon at far right */}
{task.externalProvider && (
{/* Provider icon at far right (only on weekday slots, not someday) */}
{task.externalProvider && !isSomeday && (
<span
className="flex-shrink-0"
style={{ display: "inline-flex", alignItems: "center", marginLeft: "4px", opacity: 0.45, pointerEvents: "none" }}