Skip to content

Commit 07bfc26

Browse files
authored
Merge branch 'main' into main
2 parents 000e1c1 + 2ed380f commit 07bfc26

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# kilo-code
22

3-
## 4.33.1
3+
## [v4.33.2]
4+
5+
### Patch Changes
6+
7+
- [#628](https://github.com/Kilo-Org/kilocode/pull/628) [`3bfd49e`](https://github.com/Kilo-Org/kilocode/commit/3bfd49e495400d2be89f9754255a0af32db8f942) Thanks [@kevinvandijk](https://github.com/kevinvandijk)! - Add clarification about adding context and how to add files/images
8+
9+
## [v4.33.1]
410

511
### Patch Changes
612

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "%extension.displayName%",
44
"description": "%extension.description%",
55
"publisher": "kilocode",
6-
"version": "4.33.1",
6+
"version": "4.33.2",
77
"icon": "assets/icons/logo-outline-black.png",
88
"galleryBanner": {
99
"color": "#FFFFFF",

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -950,8 +950,7 @@ const ChatTextArea = forwardRef<HTMLTextAreaElement, ChatTextAreaProps>(
950950
}
951951
})
952952

953-
// kilocode_change
954-
// const placeholderBottomText = `\n(${t("chat:addContext")}${shouldDisableImages ? `, ${t("chat:dragFiles")}` : `, ${t("chat:dragFilesImages")}`})`
953+
const placeholderBottomText = `\n(${t("chat:addContext")}${shouldDisableImages ? `, ${t("chat:dragFiles")}` : `, ${t("chat:dragFilesImages")}`})`
955954

956955
return (
957956
<div
@@ -1101,7 +1100,8 @@ const ChatTextArea = forwardRef<HTMLTextAreaElement, ChatTextAreaProps>(
11011100

11021101
onHeightChange?.(height)
11031102
}}
1104-
placeholder={placeholderText}
1103+
// kilocode_change: combine placeholderText and placeholderBottomText here
1104+
placeholder={`${placeholderText}\n${placeholderBottomText}`}
11051105
minRows={3}
11061106
maxRows={15}
11071107
autoFocus={true}

0 commit comments

Comments
 (0)