Skip to content

Commit 898b402

Browse files
committed
fix: bug fix
1 parent f93f3f1 commit 898b402

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

frontend/src/views/dashboard/common/EmptyBackground.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ const getAssetsFile = {
5959

6060
<style lang="less" scoped>
6161
.empty-info {
62-
height: 100%;
62+
height: 90%;
63+
padding-top: 0;
6364
}
6465
:deep(.ed-empty__description) {
6566
margin-top: 8px;

frontend/src/views/system/embedded/index.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ const handleSearch = () => {
180180
searchLoading.value = true
181181
getList()
182182
.then((res: any) => {
183-
// embeddedList.value = res || []
183+
embeddedList.value = res || []
184184
})
185185
.finally(() => {
186186
searchLoading.value = false
@@ -507,6 +507,7 @@ const saveHandler = () => {
507507
v-if="!!keywords && !embeddedListWithSearch.length"
508508
:description="$t('datasource.relevant_content_found')"
509509
img-type="tree"
510+
class="ed-empty_pd0"
510511
/>
511512
<div v-else class="card-content">
512513
<el-row :gutter="16" class="w-full">

0 commit comments

Comments
 (0)