File tree Expand file tree Collapse file tree 8 files changed +11
-6
lines changed
ai-chat/component/user-form Expand file tree Collapse file tree 8 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 1616 </span >
1717 </div >
1818
19- <el-scrollbar :max-height =" first ? 0 : 450" >
19+ <el-scrollbar :max-height =" first ? '' : 450" >
2020 <el-collapse-transition >
2121 <div
2222 v-show =" showUserInput"
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ const appTableRef = ref()
8686const loading = ref (false )
8787const showInput = ref (false )
8888const inputValue = ref (' ' )
89- const tableHeight = ref ( 0 )
89+ const tableHeight = ref < any >( ' ' )
9090
9191watch (showInput , (bool ) => {
9292 if (! bool ) {
Original file line number Diff line number Diff line change 11<template >
22 <el-card shadow =" never" class =" card-add" >
3- <div class =" flex-center" >
3+ <div class =" flex-center" style = " height : 133 px ; " >
44 <AppIcon iconName =" Plus" class =" add-icon p-8 border-r-4 layout-bg" />
55 <span >{{ title }}</span >
66 </div >
Original file line number Diff line number Diff line change 713713 border-radius : var (--el-border-radius-base ) !important ;
714714 padding : 5px 8px ;
715715 font-weight : 400 ;
716+ outline : none !important ;
716717 }
717718 .el-radio-button__original-radio :checked + .el-radio-button__inner {
718719 color : var (--el-color-primary ) !important ;
Original file line number Diff line number Diff line change 145145.el-card {
146146 --el-card-padding : calc (var (--app-base-px ) * 2 );
147147 color : var (--el-text-color-regular );
148+ overflow : visible ;
149+ .el-card__body {
150+ overflow : inherit ;
151+ }
148152}
149153.el-dropdown {
150154 color : var (--app-text-color );
Original file line number Diff line number Diff line change @@ -532,7 +532,7 @@ onBeforeRouteLeave((to: any) => {
532532const beforePagination = computed (() => common .paginationConfig [storeKey ])
533533const beforeSearch = computed (() => common .search [storeKey ])
534534const embeddingContentDialogRef = ref <InstanceType <typeof EmbeddingContentDialog >>()
535- const SyncWebDialogRef = ref ()
535+
536536const loading = ref (false )
537537let interval: any
538538const filterText = ref (' ' )
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ const props = defineProps({
121121 },
122122 id: String ,
123123 type: String ,
124- tableHeight: Number ,
124+ tableHeight: [ String , Number ] ,
125125 manage: Boolean
126126})
127127
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ const currentType = ref<String>('')
103103const filterText = ref (' ' )
104104
105105const activeName = ref (TeamEnum .DATASET )
106- const tableHeight = ref (0 )
106+ const tableHeight = ref (' ' )
107107
108108const settingTags = reactive ([
109109 {
You can’t perform that action at this time.
0 commit comments