File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/vs/workbench/contrib/chat/browser Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ class ChatResponseAccessibleProvider extends Disposable implements IAccessibleVi
86
86
}
87
87
responseContent += `\n${ message } \n` ;
88
88
} else if ( toolInvocation . isComplete && toolInvocation . resultDetails && 'input' in toolInvocation . resultDetails ) {
89
- responseContent += toolInvocation . resultDetails . isError ? 'Errored ' : 'Completed ' ;
89
+ responseContent += '\n' + toolInvocation . resultDetails . isError ? 'Errored ' : 'Completed ' ;
90
90
responseContent += `${ `${ typeof toolInvocation . invocationMessage === 'string' ? toolInvocation . invocationMessage : stripIcons ( renderMarkdownAsPlaintext ( toolInvocation . invocationMessage ) ) } with input: ${ toolInvocation . resultDetails . input } ` } \n` ;
91
91
}
92
92
}
You can’t perform that action at this time.
0 commit comments