From a8045f77698adf17d9219959c9d14158d48bbd2a Mon Sep 17 00:00:00 2001 From: Nicolas Bonamy Date: Sun, 27 Oct 2024 19:13:01 -0500 Subject: [PATCH] prompt fix --- src/screens/PromptAnywhere.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/screens/PromptAnywhere.vue b/src/screens/PromptAnywhere.vue index 68cc4ad..538d4ad 100644 --- a/src/screens/PromptAnywhere.vue +++ b/src/screens/PromptAnywhere.vue @@ -167,6 +167,7 @@ const onClick = (ev) => { const onClose = () => { audioPlayer.stop() window.api.anywhere.cancel() + response.value = null } const onPrompt = async (data) => { @@ -226,6 +227,7 @@ const onContinueConversation = async () => { // continue window.api.anywhere.continue(chat.value.uuid) + response.value = null }