forked from 0x2620/pandora
use simpler time format string
This commit is contained in:
parent
0f3a1db190
commit
f91821d2e8
1 changed files with 2 additions and 2 deletions
|
@ -283,7 +283,7 @@ pandora.ui.usersDialog = function() {
|
|||
{
|
||||
align: 'right',
|
||||
format: function(value) {
|
||||
return Ox.formatDate(value, "%Y-%m-%d %H:%M:%S");
|
||||
return Ox.formatDate(value, '%F %T');
|
||||
},
|
||||
id: 'firstseen',
|
||||
operator: '-',
|
||||
|
@ -294,7 +294,7 @@ pandora.ui.usersDialog = function() {
|
|||
{
|
||||
align: 'right',
|
||||
format: function(value) {
|
||||
return Ox.formatDate(value, "%Y-%m-%d %H:%M:%S");
|
||||
return Ox.formatDate(value, '%F %T');
|
||||
},
|
||||
id: 'lastseen',
|
||||
operator: '-',
|
||||
|
|
Loading…
Reference in a new issue