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 })