Show due time in todo reset info line
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
8e0af3ce86
commit
07cfbabcf0
@ -150,7 +150,9 @@ export default function TodoItem({ todo, onEdit }: TodoItemProps) {
|
||||
<RefreshCw className="h-3 w-3" />
|
||||
<span>
|
||||
Resets {format(resetDate, 'EEE dd/MM/yy')}
|
||||
{nextDueDate && <> · Next due {format(nextDueDate, 'dd/MM/yy')}</>}
|
||||
{nextDueDate && (
|
||||
<> · Next due {format(nextDueDate, 'dd/MM/yy')}{todo.due_time ? ` at ${todo.due_time.slice(0, 5)}` : ''}</>
|
||||
)}
|
||||
</span>
|
||||
</div>
|
||||
)}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user