Преглед изворни кода

Merge pull request #1277 from RooVetGit/mrubens-patch-4

Update ChatView.tsx
Matt Rubens пре 10 месеци
родитељ
комит
2a7be4b0fc
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      webview-ui/src/components/chat/ChatView.tsx

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

@@ -880,7 +880,7 @@ const ChatView = ({ isHidden, showAnnouncement, hideAnnouncement, showHistoryVie
 	const placeholderText = useMemo(() => {
 		const baseText = task ? "Type a message..." : "Type your task here..."
 		const contextText = "(@ to add context, / to switch modes"
-		const imageText = shouldDisableImages ? "hold shift to drag in files" : ", hold shift to drag in files/images"
+		const imageText = shouldDisableImages ? ", hold shift to drag in files" : ", hold shift to drag in files/images"
 		return baseText + `\n${contextText}${imageText})`
 	}, [task, shouldDisableImages])