Change summary
internal/ui/dialog/sessions_item.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Detailed changes
@@ -137,7 +137,7 @@ func renderItem(t ListItemStyles, title string, info string, focused bool, width
infoWidth = lipgloss.Width(infoText)
}
- title = ansi.Truncate(title, max(0, lineWidth-infoWidth), "")
+ title = ansi.Truncate(title, max(0, lineWidth-infoWidth), "…")
titleWidth := lipgloss.Width(title)
gap := strings.Repeat(" ", max(0, lineWidth-titleWidth-infoWidth))
content := title