Update dependencies and enhance ChatInput component functionality. Upgraded Vite to version 8.0.1, updated various package versions in package-lock.json, and improved user experience in ChatInput.vue by adding dynamic placeholder text and error handling for message sending without an active conversation.

This commit is contained in:
Torsten Schulz (local)
2026-03-19 13:30:40 +01:00
parent aabf162f04
commit 527cea1261
5 changed files with 745 additions and 734 deletions

View File

@@ -29,8 +29,8 @@
<span v-if="currentUserInfo">{{ currentUserInfo.country }}</span>
</div>
</div>
<ChatWindow v-if="!chatStore.errorMessage" />
<ChatInput v-if="chatStore.currentConversation && !chatStore.errorMessage" />
<ChatWindow />
<ChatInput />
</div>
</div>
</div>