mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 14:03:49 +00:00
Fix session picker 'No sessions found' overflow
This commit is contained in:
parent
3f4a6857a5
commit
05d78ea2de
1 changed files with 1 additions and 1 deletions
|
|
@ -165,7 +165,7 @@ class SessionList implements Component {
|
|||
if (this.filteredSessions.length === 0) {
|
||||
if (this.showCwd) {
|
||||
// "All" scope - no sessions anywhere that match filter
|
||||
lines.push(theme.fg("muted", " No sessions found"));
|
||||
lines.push(theme.fg("muted", truncateToWidth(" No sessions found", width, "…")));
|
||||
} else {
|
||||
// "Current folder" scope - hint to try "all"
|
||||
lines.push(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue