Skip to content

Commit 13e550a

Browse files
fix: style error
1 parent c6b9583 commit 13e550a

File tree

8 files changed

+11
-6
lines changed

8 files changed

+11
-6
lines changed

ui/src/components/ai-chat/component/user-form/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
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"

ui/src/components/app-table/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ const appTableRef = ref()
8686
const loading = ref(false)
8787
const showInput = ref(false)
8888
const inputValue = ref('')
89-
const tableHeight = ref(0)
89+
const tableHeight = ref<any>('')
9090
9191
watch(showInput, (bool) => {
9292
if (!bool) {

ui/src/components/card-add/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<el-card shadow="never" class="card-add">
3-
<div class="flex-center">
3+
<div class="flex-center" style="height: 133px;">
44
<AppIcon iconName="Plus" class="add-icon p-8 border-r-4 layout-bg" />
55
<span>{{ title }}</span>
66
</div>

ui/src/styles/app.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -713,6 +713,7 @@ h5 {
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;

ui/src/styles/element-plus.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,10 @@
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);

ui/src/views/document/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ onBeforeRouteLeave((to: any) => {
532532
const beforePagination = computed(() => common.paginationConfig[storeKey])
533533
const beforeSearch = computed(() => common.search[storeKey])
534534
const embeddingContentDialogRef = ref<InstanceType<typeof EmbeddingContentDialog>>()
535-
const SyncWebDialogRef = ref()
535+
536536
const loading = ref(false)
537537
let interval: any
538538
const filterText = ref('')

ui/src/views/team/component/PermissionSetting.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

ui/src/views/team/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ const currentType = ref<String>('')
103103
const filterText = ref('')
104104
105105
const activeName = ref(TeamEnum.DATASET)
106-
const tableHeight = ref(0)
106+
const tableHeight = ref('')
107107
108108
const settingTags = reactive([
109109
{

0 commit comments

Comments
 (0)