From e6c94ad58ce48275869a2490521e0e1f4aa14052 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Fri, 28 Nov 2025 10:11:20 +0800 Subject: [PATCH 1/2] fix(Table Relationships): Unsaved table relationships still show as undraggable. --- frontend/src/views/ds/DataTable.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/views/ds/DataTable.vue b/frontend/src/views/ds/DataTable.vue index 5963f0b7..6c3d7335 100644 --- a/frontend/src/views/ds/DataTable.vue +++ b/frontend/src/views/ds/DataTable.vue @@ -77,6 +77,7 @@ const pageInfo = reactive({ }) const handleRelationship = () => { activeRelationship.value = !activeRelationship.value + tableName.value = [] currentTable.value = {} } const singleDragStartD = (e: DragEvent, ele: any) => { From dfbde7040bb8503420b3c0bcbe7b46e289ac526d Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Fri, 28 Nov 2025 10:12:03 +0800 Subject: [PATCH 2/2] fix(Appearance Settings): No default welcome message or description is provided. --- frontend/src/stores/appearance.ts | 4 ++-- frontend/src/views/chat/index.vue | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/stores/appearance.ts b/frontend/src/stores/appearance.ts index aaf11484..2093f300 100644 --- a/frontend/src/stores/appearance.ts +++ b/frontend/src/stores/appearance.ts @@ -67,8 +67,8 @@ export const useAppearanceStore = defineStore('appearanceStore', { showDemoTips: false, demoTipsContent: '', fontList: [], - pc_welcome: '', - pc_welcome_desc: '', + pc_welcome: undefined, + pc_welcome_desc: undefined, } }, getters: { diff --git a/frontend/src/views/chat/index.vue b/frontend/src/views/chat/index.vue index 944816c3..4133780e 100644 --- a/frontend/src/views/chat/index.vue +++ b/frontend/src/views/chat/index.vue @@ -145,10 +145,10 @@ > - {{ appearanceStore.pc_welcome }} + {{ appearanceStore.pc_welcome ?? t('qa.greeting') }}
- {{ appearanceStore.pc_welcome_desc }} + {{ appearanceStore.pc_welcome_desc ?? t('qa.hint_description') }}