diff --git a/package.json b/package.json index 9105703..1036ae9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "my-weekly-todo-list", - "version": "1.97.3", + "version": "1.97.4", "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/GridTaskBlock.tsx b/src/components/GridTaskBlock.tsx index a5a3645..00f00e1 100644 --- a/src/components/GridTaskBlock.tsx +++ b/src/components/GridTaskBlock.tsx @@ -476,6 +476,25 @@ export function GridTaskBlock({ )} + {/* Rolling indicator */} + {task.isRolling && !task.completed && ( + + + + )} {weatherEnabled && (() => { const provider = task.externalProvider || (task.externalId?.startsWith("synology::") ? "synology" : null);