Skip to content

Commit 2dc2a32

Browse files
committed
Fix @ mentions when editing messages
1 parent 504b5dc commit 2dc2a32

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.changeset/wet-poems-tease.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"kilo-code": patch
3+
---
4+
5+
Fix @ mentions when editing messages

webview-ui/src/components/chat/ChatRow.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1191,7 +1191,8 @@ export const ChatRowContent = ({
11911191
</div>
11921192
<div
11931193
className={cn(
1194-
"ml-6 border rounded-sm overflow-hidden whitespace-pre-wrap",
1194+
"ml-6 border rounded-sm whitespace-pre-wrap",
1195+
isEditing ? "overflow-visible" : "overflow-hidden", // kilocode_change
11951196
isEditing
11961197
? "bg-vscode-editor-background text-vscode-editor-foreground"
11971198
: "cursor-text p-1 bg-vscode-editor-foreground/70 text-vscode-editor-background",

0 commit comments

Comments
 (0)