Skip to content

Commit

Permalink
fix: 优化聊天对话框问题
Browse files Browse the repository at this point in the history
  • Loading branch information
wangdan-fit2cloud committed Mar 25, 2024
1 parent 43aec77 commit bee3cb9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ui/src/components/ai-chat/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@
<el-input
ref="quickInputRef"
v-model="inputValue"
type="textarea"
placeholder="请输入"
:autosize="{ minRows: 1, maxRows: 8 }"
:rows="1"
type="textarea"
@keydown.enter="sendChatHandle($event)"
/>
<div class="operate">
Expand Down Expand Up @@ -557,6 +557,7 @@ watch(
box-sizing: border-box;
position: relative;
color: var(--app-text-color);
box-sizing: border-box;
&.chart-log {
.ai-chat__content {
padding-bottom: 0;
Expand Down Expand Up @@ -637,6 +638,7 @@ watch(
box-shadow: none;
resize: none;
padding: 12px 16px;
box-sizing: border-box;
}
.operate {
padding: 6px 10px;
Expand Down

0 comments on commit bee3cb9

Please sign in to comment.