Skip to content

Commit 3a7a14f

Browse files
wangdan-fit2cloudshaohuzhang1
authored andcommitted
fix: 修复嵌入式样式冲突问题
(cherry picked from commit 7a76f73)
1 parent b40336f commit 3a7a14f

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

apps/application/template/embed.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,7 @@ function initMaxkbStyle(root){
272272
position: absolute;
273273
display: flex;
274274
align-items: center;
275+
line-height: 18px;
275276
}
276277
#maxkb #maxkb-chat-container .maxkb-operate .maxkb-chat-close{
277278
margin-left:15px;

ui/src/views/dataset/component/ParagraphList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import { cloneDeep } from 'lodash'
4848
import { ref, computed } from 'vue'
4949
import EditParagraphDialog from './EditParagraphDialog.vue'
5050
import { MsgConfirm } from '@/utils/message'
51-
const page_size = ref<number>(20)
51+
const page_size = ref<number>(30)
5252
const current_page = ref<number>(1)
5353
const currentCIndex = ref<number>(0)
5454
const EditParagraphDialogRef = ref()

ui/src/views/dataset/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ const loading = ref(false)
160160
const datasetList = ref<any[]>([])
161161
const paginationConfig = reactive({
162162
current_page: 1,
163-
page_size: 20,
163+
page_size: 30,
164164
total: 0
165165
})
166166

ui/src/views/function-lib/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ const functionLibList = ref<any[]>([])
142142
143143
const paginationConfig = reactive({
144144
current_page: 1,
145-
page_size: 20,
145+
page_size: 30,
146146
total: 0
147147
})
148148

ui/src/views/paragraph/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ const multipleSelection = ref<any[]>([])
198198
199199
const paginationConfig = reactive({
200200
current_page: 1,
201-
page_size: 20,
201+
page_size: 30,
202202
total: 0
203203
})
204204

0 commit comments

Comments
 (0)