mirror of
https://git.proxmox.com/git/proxmox-widget-toolkit
synced 2025-05-18 02:42:01 +00:00
tfa view: avoid showing start of unix epoch when no creation date
as that is a bit unrealistically, rather use N/A (not applicable) Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
7edda053ea
commit
65c39bc04a
@ -234,7 +234,7 @@ Ext.define('Proxmox.panel.TfaView', {
|
|||||||
width: 150,
|
width: 150,
|
||||||
sortable: true,
|
sortable: true,
|
||||||
dataIndex: 'created',
|
dataIndex: 'created',
|
||||||
renderer: Proxmox.Utils.render_timestamp,
|
renderer: t => !t ? 'N/A' : Proxmox.Utils.render_timestamp(t),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
header: gettext('Description'),
|
header: gettext('Description'),
|
||||||
|
Loading…
Reference in New Issue
Block a user