diff --git a/frontend/VERSION.json b/frontend/VERSION.json index e69d9647..a661face 100644 --- a/frontend/VERSION.json +++ b/frontend/VERSION.json @@ -1,5 +1,5 @@ { - "version": "1.8.6", + "version": "1.8.7", "last_build": "2026-04-13-1954", "codename": "TypeFix" } \ No newline at end of file diff --git a/frontend/app/logs/page.tsx b/frontend/app/logs/page.tsx index d86465d9..ea467cd8 100644 --- a/frontend/app/logs/page.tsx +++ b/frontend/app/logs/page.tsx @@ -289,7 +289,7 @@ export default function LogsPage() { {selectedLog.target_snapshot && (() => { try { - const snap = JSON.parse(selectedLog.target_snapshot); + const snap = JSON.parse(selectedLog.target_snapshot) as Record; return (
@@ -299,12 +299,12 @@ export default function LogsPage() {
{Object.entries(snap).map(([key, val]) => ( - val && key !== 'image_url' && ( + (val && key !== 'image_url') ? (

{key.replace('_', ' ')}

{String(val)}

- ) + ) : null ))}