Compare commits

..

2 Commits

Author SHA1 Message Date
f77ccd47aa Update. 2025-07-01 10:43:15 +02:00
006bb4e282 Update. 2025-06-29 21:13:30 +02:00
2 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ class UserService(BaseService):
async def search(self, query, **kwargs): async def search(self, query, **kwargs):
query = query.strip().lower() query = query.strip().lower()
kwarggs["deleted_at"] = None kwargs["deleted_at"] = None
if not query: if not query:
return [] return []
results = [] results = []

View File

@ -96,8 +96,8 @@ class STTButton extends HTMLElement {
.replace(/\?/g, "?\n") .replace(/\?/g, "?\n")
.replace(/\!/g, "!\n"); .replace(/\!/g, "!\n");
this.targetEl.value = ''; // punctuated; this.targetEl.value = punctuated; // punctuated;
this.simulateTypingWithEvents(this.targetEl, punctuated, 0).then(() => { this.simulateTypingWithEvents(this.targetEl, ' ', 0).then(() => {
const chatInput = document.querySelector('chat-input'); const chatInput = document.querySelector('chat-input');
chatInput.finalizeMessage(); chatInput.finalizeMessage();
}); });