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"