fix(drawing): update timestamp formatting to include milliseconds

This commit is contained in:
CaIon
2026-06-18 21:38:55 +08:00
parent f4575fe664
commit f7dae5cbe6
@@ -94,7 +94,7 @@ export function useDrawingLogsColumns(
return (
<div className='flex min-w-0 flex-col gap-0.5'>
<span className='truncate font-mono text-xs tabular-nums'>
{formatTimestampToDate(submitTime)}
{formatTimestampToDate(submitTime, 'milliseconds')}
</span>
<StatusBadge
label={t(mjStatusMapper.getLabel(log.status))}