This repository was archived by the owner on Apr 11, 2022. It is now read-only.

Description
Null values are shown in a tree as "TODO" string.
To reproduce this:
echo '{"foo":null}' | jsonui
Output is:
┌─ tree ──┐ ┌─ text ───────────────────┐
│root │ │{ │
│└─ foo │ │ "foo": "TODO" │
│ │ │} │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
└─────────┘ └──────────────────────────┘
┌─ path ───────────────────────────────┐
└──────────────────────────────────────┘
Expect this:
┌─ tree ──┐ ┌─ text ───────────────────┐
│root │ │{ │
│└─ foo │ │ "foo": null │
│ │ │} │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
└─────────┘ └──────────────────────────┘
┌─ path ───────────────────────────────┐
└──────────────────────────────────────┘