fix: use generic 'documents' copy in ChatView instead of 'rulebooks'
This commit is contained in:
parent
2e24808d91
commit
42ae3bc39b
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue