mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-19 15:04:45 +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.filteredSessions.length === 0) {
|
||||||
if (this.showCwd) {
|
if (this.showCwd) {
|
||||||
// "All" scope - no sessions anywhere that match filter
|
// "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 {
|
} else {
|
||||||
// "Current folder" scope - hint to try "all"
|
// "Current folder" scope - hint to try "all"
|
||||||
lines.push(
|
lines.push(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue