Skip to content

Commit 234e0c5

Browse files
committed
UX Polish
1 parent 47f12c6 commit 234e0c5

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

packages/core/src/codewhispererChat/controllers/chat/controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ export class ChatController {
720720
this.messenger,
721721
tabID,
722722
triggerID,
723-
{ ...toolUse, toolUseId: `${toolUse.toolUseId}-output` },
723+
toolUse,
724724
session,
725725
undefined,
726726
false,

packages/core/src/codewhispererChat/controllers/chat/messenger/messenger.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,10 @@ export class Messenger {
670670
fullWidth: false,
671671
padding: true,
672672
codeBlockActions: undefined,
673-
title: 'Reading Files',
673+
title:
674+
session.readFiles.length > 1
675+
? `Files Read ${session.readFiles.length} files`
676+
: `File Read 1 file`,
674677
},
675678
tabID
676679
)

0 commit comments

Comments
 (0)