mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-30 12:40:44 +00:00
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:
parent
eaaa55389b
commit
f9b88c8f8e
1 changed files with 1 additions and 1 deletions
|
|
@ -69,7 +69,7 @@ export const Footer: React.FC = () => {
|
|||
) : uiState.shellModeActive ? (
|
||||
<ShellModeIndicator />
|
||||
) : statusLineText ? (
|
||||
<Text dimColor wrap="truncate">
|
||||
<Text dimColor wrap="wrap">
|
||||
{statusLineText}
|
||||
</Text>
|
||||
) : (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue