diff --git a/desktop/plugins/public/ui-debugger/components/PerfStats.tsx b/desktop/plugins/public/ui-debugger/components/PerfStats.tsx index fbff575aa..ea3e1d657 100644 --- a/desktop/plugins/public/ui-debugger/components/PerfStats.tsx +++ b/desktop/plugins/public/ui-debugger/components/PerfStats.tsx @@ -26,6 +26,13 @@ const columns: DataTableColumn[] = [ { key: 'txId', title: 'TXID', + onRender: (row: PerfStatsEvent) => { + try { + return new Date(row.txId).toISOString(); + } catch { + return row.txId; + } + }, }, { key: 'observerType',