diff --git a/web/src/ui/util/JSONView.tsx b/web/src/ui/util/JSONView.tsx index dc793c8..26f16fe 100644 --- a/web/src/ui/util/JSONView.tsx +++ b/web/src/ui/util/JSONView.tsx @@ -42,8 +42,10 @@ function renderJSONValue(data: unknown, collapsed: boolean) { return } return
    - {data.map((item, i) => -
  1. )} + {data.map((item, index, arr) => +
  2. + +
  3. )}
} else { const entries = Object.entries(data)