fix: use generic 'documents' copy in ChatView instead of 'rulebooks'

This commit is contained in:
pyr0ball 2026-05-05 11:21:11 -07:00
parent 2e24808d91
commit 42ae3bc39b

View file

@ -4,8 +4,8 @@
<div class="chat-pane"> <div class="chat-pane">
<div class="chat-messages" ref="messagesEl"> <div class="chat-messages" ref="messagesEl">
<p class="empty-chat" v-if="history.length === 0"> <p class="empty-chat" v-if="history.length === 0">
Ask a question across your indexed rulebooks. Ask a question across your indexed documents.
No rulebooks indexed? Go to <RouterLink to="/">Library</RouterLink> first. No documents indexed? Go to <RouterLink to="/">Library</RouterLink> first.
</p> </p>
<div <div
@ -42,7 +42,7 @@
ref="inputEl" ref="inputEl"
v-model="draft" v-model="draft"
class="chat-input" class="chat-input"
placeholder="Ask about your rulebooks…" placeholder="Ask about your documents…"
:disabled="thinking" :disabled="thinking"
aria-label="Chat message" aria-label="Chat message"
autofocus autofocus