Skip to content

Commit f99da1f

Browse files
authored
chore(participant): move docs references after content VSCODE-629 (#852)
1 parent b127066 commit f99da1f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/participant/participant.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1429,6 +1429,10 @@ export default class ParticipantController {
14291429
stream,
14301430
});
14311431

1432+
if (docsResult.responseContent) {
1433+
stream.markdown(docsResult.responseContent);
1434+
}
1435+
14321436
if (docsResult.responseReferences) {
14331437
for (const reference of docsResult.responseReferences) {
14341438
this._streamResponseReference({
@@ -1438,10 +1442,6 @@ export default class ParticipantController {
14381442
}
14391443
}
14401444

1441-
if (docsResult.responseContent) {
1442-
stream.markdown(docsResult.responseContent);
1443-
}
1444-
14451445
this._telemetryService.trackCopilotParticipantResponse({
14461446
command: 'docs/chatbot',
14471447
has_cta: !!docsResult.responseReferences,

0 commit comments

Comments
 (0)