可令对口型

This commit is contained in:
2025-12-01 22:27:50 +08:00
parent ac803ec03b
commit 900b47f585
48 changed files with 5283 additions and 130 deletions

View File

@@ -16,7 +16,7 @@ export function useBenchmarkData() {
try {
// 过滤掉不需要持久化的临时字段(如 _analyzing
const persistData = (data.value || []).map((item) => {
const rest = { ...(item || {}) }
const rest = { ...item }
delete rest._analyzing
return rest
})