fix: 更新依赖项,修复 ExportDialog 中 removeId 的日志输出

This commit is contained in:
xiongxiao
2026-03-19 01:35:45 +08:00
committed by cnb
parent 64eabb7aa8
commit da6771849f
2 changed files with 4 additions and 3 deletions

View File

@@ -16,7 +16,7 @@
"@base-ui/react": "^1.3.0",
"@kevisual/router": "0.1.6",
"@tanstack/react-query": "^5.91.0",
"@tanstack/react-router": "^1.167.4",
"@tanstack/react-router": "^1.167.5",
"@tanstack/react-table": "^8.21.3",
"@uiw/react-codemirror": "^4.25.8",
"@uiw/react-md-editor": "^4.0.11",
@@ -47,11 +47,11 @@
"@kevisual/context": "^0.0.8",
"@kevisual/js-filter": "^0.0.6",
"@kevisual/kv-login": "^0.1.18",
"@kevisual/query": "^0.0.54",
"@kevisual/query": "^0.0.55",
"@kevisual/types": "^0.0.12",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/react-router-devtools": "^1.166.9",
"@tanstack/router-plugin": "^1.166.13",
"@tanstack/router-plugin": "^1.166.14",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",

View File

@@ -80,6 +80,7 @@ export const ExportDialog = () => {
removeId,
};
const query = createQueryByRoutes(cloneDeep(routeInfo as any), options);
console.log('生成的查询代码:', removeId);
return query;
}, [exportRoutes, before, after, removeViewItem, removeId]);