personal memory agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(todos): enable text truncation with ellipsis for long todo items

Fixed CSS flexbox layout to properly constrain todo text width, allowing
overflow text to be truncated with ellipsis. The existing title tooltip
now properly displays full text on hover for truncated items.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

+1 -2
+1 -2
dream/templates/calendar_todos.html
··· 50 50 background: #ffffff; 51 51 font-size: 0.94rem; 52 52 flex: 1; 53 + min-width: 0; 53 54 } 54 55 55 56 .todo-row.completed .todo-item { ··· 71 72 72 73 73 74 .todo-text { 74 - flex: 1; 75 - min-width: 0; 76 75 overflow: hidden; 77 76 text-overflow: ellipsis; 78 77 white-space: nowrap;