mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fix JSON type rendering. Fixes #1404
This commit is contained in:
committed by
Dave Page
parent
d4c3b1bcff
commit
3ee8861d44
@@ -1555,6 +1555,12 @@ define(
|
||||
case "timestamp with time zone":
|
||||
col_cell = 'datetime';
|
||||
break;
|
||||
case "json":
|
||||
case "json[]":
|
||||
case "jsonb":
|
||||
case "jsonb[]":
|
||||
col_cell = Backgrid.Extension.JSONBCell;
|
||||
break;
|
||||
default:
|
||||
col_cell = 'string';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user