chore: don't truncate bash output (#637)

This commit is contained in:
jnjpng
2026-01-22 11:32:26 -08:00
committed by GitHub
parent bf18792c9c
commit 9ddd3857e0
2 changed files with 11 additions and 6 deletions

View File

@@ -63,9 +63,9 @@ export const BashCommandMessage = memo(
<StreamingOutputDisplay streaming={line.streaming} />
)}
{/* Collapsed output after completion */}
{/* Full output after completion (no collapse for bash mode) */}
{line.phase === "finished" && line.output && (
<CollapsedOutputDisplay output={line.output} />
<CollapsedOutputDisplay output={line.output} maxLines={Infinity} />
)}
{/* Fallback: show output when phase is undefined (legacy bash commands before streaming) */}