Skip to content

Commit

Permalink
use agent's full name in the inline chat provider wrapper (#212871)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken authored May 16, 2024
1 parent 88f27ce commit 462a2a7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ export class AgentInlineChatProvider implements IInlineChatSessionProvider {
readonly agent: IChatAgent,
@IChatAgentService private readonly _chatAgentService: IChatAgentService,
) {
this.label = agent.name;
this.label = agent.fullName ?? agent.name;
this.extensionId = agent.extensionId;
this.supportIssueReporting = agent.metadata.supportIssueReporting;
}
Expand Down

0 comments on commit 462a2a7

Please sign in to comment.