Compare commits

..

No commits in common. "f77ccd47aa3fd8a37f361583f799ed3bd3ae888c" and "2af8ce9bb3a26576586155ec547627c540946aeb" have entirely different histories.

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()
kwargs["deleted_at"] = None kwarggs["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; // punctuated; this.targetEl.value = ''; // punctuated;
this.simulateTypingWithEvents(this.targetEl, ' ', 0).then(() => { this.simulateTypingWithEvents(this.targetEl, punctuated, 0).then(() => {
const chatInput = document.querySelector('chat-input'); const chatInput = document.querySelector('chat-input');
chatInput.finalizeMessage(); chatInput.finalizeMessage();
}); });