From 0a55060e89421c38ce575f0404e6a62d464fd805 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Thu, 27 Nov 2025 22:32:35 +0800 Subject: [PATCH] fix: session controller in webchat --- dashboard/src/components/chat/Chat.vue | 2 +- dashboard/src/components/chat/StandaloneChat.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboard/src/components/chat/Chat.vue b/dashboard/src/components/chat/Chat.vue index ff0349409..caff448cc 100644 --- a/dashboard/src/components/chat/Chat.vue +++ b/dashboard/src/components/chat/Chat.vue @@ -84,7 +84,7 @@ v-model:prompt="prompt" :stagedImagesUrl="stagedImagesUrl" :stagedAudioUrl="stagedAudioUrl" - :disabled="isStreaming || isConvRunning" + :disabled="isStreaming" :enableStreaming="enableStreaming" :isRecording="isRecording" :session-id="currSessionId || null" diff --git a/dashboard/src/components/chat/StandaloneChat.vue b/dashboard/src/components/chat/StandaloneChat.vue index 6b4581bad..a1672ff53 100644 --- a/dashboard/src/components/chat/StandaloneChat.vue +++ b/dashboard/src/components/chat/StandaloneChat.vue @@ -22,7 +22,7 @@ v-model:prompt="prompt" :stagedImagesUrl="stagedImagesUrl" :stagedAudioUrl="stagedAudioUrl" - :disabled="isStreaming || isConvRunning" + :disabled="isStreaming" :enableStreaming="enableStreaming" :isRecording="isRecording" :session-id="currSessionId || null"