Skip to content

Commit 1fe0bc0

Browse files
committed
Adds more tabular-nums
1 parent 00629cf commit 1fe0bc0

File tree

1 file changed

+9
-4
lines changed
  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.errors.$fingerprint

1 file changed

+9
-4
lines changed

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.errors.$fingerprint/route.tsx

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,10 @@ function ErrorGroupDetail({
411411
<div className="flex items-start justify-between gap-4">
412412
<div className="flex flex-col gap-0.5">
413413
<Header2>{errorGroup.errorMessage}</Header2>
414-
<Header3>{formatNumberCompact(errorGroup.count)} total occurrences</Header3>
414+
<Header3>
415+
<span className="tabular-nums">{formatNumberCompact(errorGroup.count)}</span> total
416+
occurrences
417+
</Header3>
415418
</div>
416419
<ErrorGroupActionButtons
417420
state={errorGroup.state}
@@ -604,18 +607,20 @@ function IgnoredDetails({
604607
{state.ignoredUntilOccurrenceRate !== null && state.ignoredUntilOccurrenceRate > 0 && (
605608
<li>
606609
Occurrence rate exceeds{" "}
607-
<span className="text-text-bright">{state.ignoredUntilOccurrenceRate}/min</span>
610+
<span className="tabular-nums text-text-bright">
611+
{state.ignoredUntilOccurrenceRate}/min
612+
</span>
608613
</li>
609614
)}
610615
{state.ignoredUntilTotalOccurrences !== null &&
611616
state.ignoredUntilTotalOccurrences > 0 && (
612617
<li>
613618
Total occurrences exceed{" "}
614-
<span className="text-text-bright">
619+
<span className="tabular-nums text-text-bright">
615620
{state.ignoredUntilTotalOccurrences.toLocaleString()}
616621
</span>
617622
{occurrencesSinceIgnore !== null && (
618-
<span className="ml-1 text-text-dimmed">
623+
<span className="ml-1 tabular-nums text-text-dimmed">
619624
({occurrencesSinceIgnore.toLocaleString()} since ignored)
620625
</span>
621626
)}

0 commit comments

Comments
 (0)