Skip to content

Commit 2f00058

Browse files
authored
Update ChatView.tsx
1 parent 6d11f44 commit 2f00058

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -892,10 +892,10 @@ const ChatView = forwardRef<ChatViewRef, ChatViewProps>(
892892

893893
const placeholderText = useMemo(() => {
894894
const baseText = task ? "Type a message..." : "Type your task here..."
895-
const contextText = "(@ to add context, / to switch modes"
895+
const contextText = "(@ to add context, / to switch modes, hold shift to drag in files"
896896
const imageText = shouldDisableImages
897-
? "hold shift to drag in files"
898-
: ", hold shift to drag in files/images"
897+
? ""
898+
: "/images"
899899
return baseText + `\n${contextText}${imageText})`
900900
}, [task, shouldDisableImages])
901901

0 commit comments

Comments
 (0)