Update variables UI and parsing

This commit is contained in:
2026-02-01 02:55:43 +08:00
parent bcf664e9a0
commit 5dd9fb6f97
3 changed files with 137 additions and 51 deletions

View File

@@ -5,7 +5,6 @@ export function generateSemantic(path, op, oldValue, newValue, delta, operandVal
if (v === undefined) return '空';
if (v === null) return 'null';
try {
if (typeof v === 'string') return JSON.stringify(v);
return JSON.stringify(v);
} catch {
return String(v);