diff --git a/web/src/components/FileTable.vue b/web/src/components/FileTable.vue index f54f4b0a..c3ef2d7e 100644 --- a/web/src/components/FileTable.vue +++ b/web/src/components/FileTable.vue @@ -372,6 +372,7 @@ import { parseToShanghai } from '@/utils/time'; \ No newline at end of file + diff --git a/web/src/stores/database.js b/web/src/stores/database.js index 678a39d1..ef089f5d 100644 --- a/web/src/stores/database.js +++ b/web/src/stores/database.js @@ -18,6 +18,8 @@ export const useDatabaseStore = defineStore('database', () => { const queryParams = ref([]); const meta = reactive({}); const graphStats = ref({ + total_nodes: 0, + total_edges: 0, displayed_nodes: 0, displayed_edges: 0, is_truncated: false, @@ -35,7 +37,6 @@ export const useDatabaseStore = defineStore('database', () => { chunkLoading: false, autoRefresh: false, queryParamsLoading: false, - isGraphMaximized: false, rightPanelVisible: true, }); diff --git a/web/src/views/DataBaseInfoView.vue b/web/src/views/DataBaseInfoView.vue index e304f937..55887bb7 100644 --- a/web/src/views/DataBaseInfoView.vue +++ b/web/src/views/DataBaseInfoView.vue @@ -1,38 +1,5 @@