8000 fix: 修改最大行数与官方保持一致 by yi-ge · Pull Request #502 · Chanzhaoyu/chatgpt-web · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

fix: 修改最大行数与官方保持一致 #502

Merged
merged 11 commits into from
Mar 12, 2023
2 changes: 1 addition & 1 deletion src/views/chat/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ onUnmounted(() => {
v-model:value="prompt"
type="textarea"
:placeholder="placeholder"
:autosize="{ minRows: 1, maxRows: 2 }"
:autosize="{ minRows: 1, maxRows: isMobile ? 4 : 8 }"
@input="handleInput"
4344 @focus="handleFocus"
@blur="handleBlur"
Expand Down
0