Skip to content

Commit

Permalink
Convert confirmation part in chat panel response (#220128)
Browse files Browse the repository at this point in the history
* Convert confirmation part

* Move conversion to ChatResponsePart

* Fix indent
  • Loading branch information
bhavyaus authored Jul 7, 2024
1 parent 477d233 commit 3e283de
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/vs/workbench/api/common/extHostTypeConverters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2557,6 +2557,8 @@ export namespace ChatResponsePart {
return ChatResponseDetectedParticipantPart.from(part);
} else if (part instanceof types.ChatResponseWarningPart) {
return ChatResponseWarningPart.from(part);
} else if (part instanceof types.ChatResponseConfirmationPart) {
return ChatResponseConfirmationPart.from(part);
}

return {
Expand Down

0 comments on commit 3e283de

Please sign in to comment.