From 3a7a14f59031b87ec574f632e2cb32bfde03ad39 Mon Sep 17 00:00:00 2001 From: wangdan-fit2cloud Date: Wed, 11 Dec 2024 14:13:13 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=B5=8C=E5=85=A5?= =?UTF-8?q?=E5=BC=8F=E6=A0=B7=E5=BC=8F=E5=86=B2=E7=AA=81=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 7a76f73682f91286a0f61e3300cf7b3e703b2d2b) --- apps/application/template/embed.js | 1 + ui/src/views/dataset/component/ParagraphList.vue | 2 +- ui/src/views/dataset/index.vue | 2 +- ui/src/views/function-lib/index.vue | 2 +- ui/src/views/paragraph/index.vue | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/apps/application/template/embed.js b/apps/application/template/embed.js index ec85ed540..a6d19b605 100644 --- a/apps/application/template/embed.js +++ b/apps/application/template/embed.js @@ -272,6 +272,7 @@ function initMaxkbStyle(root){ position: absolute; display: flex; align-items: center; + line-height: 18px; } #maxkb #maxkb-chat-container .maxkb-operate .maxkb-chat-close{ margin-left:15px; diff --git a/ui/src/views/dataset/component/ParagraphList.vue b/ui/src/views/dataset/component/ParagraphList.vue index 3741f93dd..022bd8e35 100644 --- a/ui/src/views/dataset/component/ParagraphList.vue +++ b/ui/src/views/dataset/component/ParagraphList.vue @@ -48,7 +48,7 @@ import { cloneDeep } from 'lodash' import { ref, computed } from 'vue' import EditParagraphDialog from './EditParagraphDialog.vue' import { MsgConfirm } from '@/utils/message' -const page_size = ref(20) +const page_size = ref(30) const current_page = ref(1) const currentCIndex = ref(0) const EditParagraphDialogRef = ref() diff --git a/ui/src/views/dataset/index.vue b/ui/src/views/dataset/index.vue index d6d5b8a46..6f062af3c 100644 --- a/ui/src/views/dataset/index.vue +++ b/ui/src/views/dataset/index.vue @@ -160,7 +160,7 @@ const loading = ref(false) const datasetList = ref([]) const paginationConfig = reactive({ current_page: 1, - page_size: 20, + page_size: 30, total: 0 }) diff --git a/ui/src/views/function-lib/index.vue b/ui/src/views/function-lib/index.vue index 43dfd1110..3e6770d77 100644 --- a/ui/src/views/function-lib/index.vue +++ b/ui/src/views/function-lib/index.vue @@ -142,7 +142,7 @@ const functionLibList = ref([]) const paginationConfig = reactive({ current_page: 1, - page_size: 20, + page_size: 30, total: 0 }) diff --git a/ui/src/views/paragraph/index.vue b/ui/src/views/paragraph/index.vue index 31f764868..19b39865e 100644 --- a/ui/src/views/paragraph/index.vue +++ b/ui/src/views/paragraph/index.vue @@ -198,7 +198,7 @@ const multipleSelection = ref([]) const paginationConfig = reactive({ current_page: 1, - page_size: 20, + page_size: 30, total: 0 })