Skip to content

Commit 830dbba

Browse files
committed
fix message
1 parent d32a89f commit 830dbba

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
getContextMenuOptions,
77
insertMention,
88
removeMention,
9-
shouldShowContextMenu
9+
shouldShowContextMenu,
1010
} from "../../../utils/context-mentions"
1111
import ContextMenu from "../ContextMenu"
1212
import Thumbnails from "../../common/Thumbnails"
@@ -676,8 +676,7 @@ const ChatTextAreaInput = React.forwardRef<HTMLTextAreaElement, ChatTextAreaInpu
676676
}}>
677677
<span>[@ Context]</span>
678678
<span>[/ Modes]</span>
679-
{/* shouldDisableImages */}
680-
{!shouldDisableImages && <span>[⇧ Drag Images]</span>}
679+
<span>[⇧ Drag {!shouldDisableImages ? "Files/Images" : "Files"}]</span>
681680
</div>
682681
)}
683682
{selectedImages.length > 0 && (

0 commit comments

Comments
 (0)