diff --git a/ui/src/components/ai-chat/index.vue b/ui/src/components/ai-chat/index.vue index 83f4d0107..02bf02f6f 100644 --- a/ui/src/components/ai-chat/index.vue +++ b/ui/src/components/ai-chat/index.vue @@ -146,7 +146,7 @@ ref="quickInputRef" v-model="inputValue" placeholder="请输入" - :autosize="{ minRows: 1, maxRows: 4 }" + :autosize="{ minRows: 1, maxRows: common.isMobile() ? 4 : 10 }" type="textarea" :maxlength="100000" @keydown.enter="sendChatHandle($event)" @@ -173,7 +173,7 @@