Skip to content

Commit 53af5ad

Browse files
committed
fix: fix style
1 parent 7945a78 commit 53af5ad

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

frontend/src/i18n/en.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"password_reset_successful": "Password reset successful"
3333
},
3434
"dashboard": {
35+
"no_data": "No Relevant Content Found",
3536
"new_tab": "New Tab",
3637
"length_limit64": "Field length must be between 1 and 64",
3738
"sort_column": "Sort field",

frontend/src/i18n/zh-CN.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"password_reset_successful": "重置密码成功"
3535
},
3636
"dashboard": {
37+
"no_data": "没找到相关内容",
3738
"new_tab": "新建Tab",
3839
"length_limit64": "字段长度需要在1-64之间",
3940
"sort_column": "排序字段",

frontend/src/views/dashboard/editor/DashboardChatList.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ const filteredAndGroupedData = computed(() => {
130130
"
131131
class="no-data"
132132
>
133-
{{ t('dashboard.no_chat') }}
133+
{{ t('dashboard.no_data') }}
134134
</div>
135135
</div>
136136
</el-scrollbar>
@@ -217,6 +217,7 @@ const filteredAndGroupedData = computed(() => {
217217
.no-data {
218218
text-align: center;
219219
padding: 16px;
220+
margin-top: 140px;
220221
color: var(--ed-text-color-placeholder);
221222
font-size: 14px;
222223
}

0 commit comments

Comments
 (0)