fix(footer): use wrap instead of truncate for status line text

Allow status line text to wrap to the next line when the terminal
is too narrow, preserving complete information instead of truncating.
This commit is contained in:
wenshao 2026-04-08 20:48:45 +08:00
parent eaaa55389b
commit f9b88c8f8e

View file

@ -69,7 +69,7 @@ export const Footer: React.FC = () => {
) : uiState.shellModeActive ? (
<ShellModeIndicator />
) : statusLineText ? (
<Text dimColor wrap="truncate">
<Text dimColor wrap="wrap">
{statusLineText}
</Text>
) : (