mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Fix command output trim
This commit is contained in:
parent
5609395780
commit
c9e417939b
1 changed files with 1 additions and 1 deletions
|
|
@ -411,7 +411,7 @@ const ChatRow: React.FC<ChatRowProps> = ({
|
|||
}
|
||||
return {
|
||||
command: text.slice(0, outputIndex).trim(),
|
||||
output: text.slice(outputIndex + COMMAND_OUTPUT_STRING.length).trimStart(),
|
||||
output: text.slice(outputIndex + COMMAND_OUTPUT_STRING.length).trim() + " ",
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue