Fix query tool display of various types:

date
reltime
abstime
time with timezone
time without timezone
pull/3/head
Murtuza Zabuawala 2016-07-15 11:59:45 +01:00 committed by Dave Page
parent 1a129cf30e
commit 517a797947
1 changed files with 8 additions and 1 deletions

View File

@ -1555,9 +1555,16 @@ define(
case "numeric":
col_cell = 'number';
break;
case "date":
case "reltime":
case "abstime":
case "timestamp without time zone":
case "timestamp with time zone":
col_cell = 'datetime';
case "time with time zone":
case "time without time zone":
col_cell = Backgrid.DatetimeCell.extend({
formatter: Backgrid.StringFormatter,
});
break;
case "json":
case "json[]":