fix: update input placeholder to match Ctrl+Enter binding

This commit is contained in:
gramps
2026-07-13 15:52:57 -07:00
parent ebb613b68c
commit 7c751294c1
+1 -1
View File
@@ -417,7 +417,7 @@ body { font-family: var(--font-body); background: var(--bg-primary); color: var(
<div class="input-row">
<input type="file" id="fileInput" style="display:none" accept=".txt,.md,.pdf,.json,.py,.html,.png,.jpg,.jpeg,.gif,.svg,.webp" onchange="onFileSelected(event)">
<button class="paperclip-btn" id="paperclipBtn" onclick="document.getElementById('fileInput').click()" title="Attach file">&#128206;</button>
<textarea id="userInput" placeholder="Type a message... (Shift+Enter to search, Enter to send)" rows="1" autofocus></textarea>
<textarea id="userInput" placeholder="Type a message... (Ctrl+Enter to Online Search, Enter to Private Search)" rows="1" autofocus></textarea>
<button class="send-btn" id="sendBtn" onclick="sendMessage()">SEND</button>
<button class="search-btn" id="searchBtn" onclick="sendSearch()" title="Search the web" style="display:none">web &#128269;</button>
</div>