Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldambra committed Nov 24, 2024
1 parent 2fa9ab3 commit 7313cdc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function ItemTimeDisplay({ item }: { item: InspectorListItem }): JSX.Element {
const fixedUnits = durationMs / 1000 > 3600 ? 3 : 2

return (
<span className="px-2 py-1 text-xs min-w-12">
<span className="px-2 py-1 text-xs min-w-18 align-middle">
{timestampFormat != TimestampFormat.Relative ? (
(timestampFormat === TimestampFormat.UTC ? item.timestamp.tz('UTC') : item.timestamp).format(
'DD, MMM HH:mm:ss'
Expand Down

0 comments on commit 7313cdc

Please sign in to comment.