diff --git a/src/views/home/components/InputBar.vue b/src/views/home/components/InputBar.vue index d0065ee..99f90c6 100644 --- a/src/views/home/components/InputBar.vue +++ b/src/views/home/components/InputBar.vue @@ -17,7 +17,7 @@ v-model="message" type="textarea" :autosize="{ minRows: 1, maxRows: 6 }" - :disabled="generating || isWorkflowRunning" + :disabled="generating || isWorkflowRunning || selectedWorkflowId !== null" :placeholder="inputPlaceholder" class="message-input" @focus="isFocused = true" @@ -51,7 +51,7 @@