mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 20:31:37 -05:00
Fix command output trim
This commit is contained in:
@@ -411,7 +411,7 @@ const ChatRow: React.FC<ChatRowProps> = ({
|
|||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
command: text.slice(0, outputIndex).trim(),
|
command: text.slice(0, outputIndex).trim(),
|
||||||
output: text.slice(outputIndex + COMMAND_OUTPUT_STRING.length).trimStart(),
|
output: text.slice(outputIndex + COMMAND_OUTPUT_STRING.length).trim() + " ",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user