Hi everyone, Working with JSON/JSONB data inside relational databases is often a pain. Most database IDEs treat JSON fields as massive, unformatted text strings, forcing you to copy-paste them into external formatters just to understand what's going on. To solve this, I’ve completely revamped the Data Grid in Tabularis (an open-source, local-first SQL client built with Rust and Tauri v2). Here is how it handles JSON now: Code, Tree, and Raw Editors: You can switch views depending on whether you need to check the nested structure (Tree) or do quick edits (Code/Raw). Smart Auto-Detection: If you have valid JSON stored inside plain TEXT or VARCHAR columns, a new toggle automatically detects it and activates the rich JSON cell renderer (giving you the tree expander and native viewer). Native Viewer Window: Opens heavy JSON structures in a dedicated, lightweight Tauri window with per-cell deduplication, keeping the grid snappy.…