Skip to content

Commit 0444bf9

Browse files
committed
Tabular numbers
1 parent 56fa86e commit 0444bf9

File tree

1 file changed

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

1 file changed

+5
-4
lines changed

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -331,13 +331,13 @@ function Upgradable({
331331
<TableBody>
332332
<TableRow>
333333
<TableCell className="pl-0 text-text-bright">Extra concurrency purchased</TableCell>
334-
<TableCell alignment="right" className="text-text-bright">
334+
<TableCell alignment="right" className="tabular-nums text-text-bright">
335335
{extraConcurrency}
336336
</TableCell>
337337
</TableRow>
338338
<TableRow>
339339
<TableCell>Allocated concurrency</TableCell>
340-
<TableCell alignment="right" className={"text-text-bright"}>
340+
<TableCell alignment="right" className={"tabular-nums text-text-bright"}>
341341
{allocationModified ? (
342342
<>
343343
<span className="text-text-dimmed line-through">
@@ -354,13 +354,14 @@ function Upgradable({
354354
<TableCell>Unallocated concurrency</TableCell>
355355
<TableCell
356356
alignment="right"
357-
className={
357+
className={cn(
358+
"tabular-nums",
358359
unallocated > 0
359360
? "text-success"
360361
: unallocated < 0
361362
? "text-error"
362363
: "text-text-bright"
363-
}
364+
)}
364365
>
365366
{allocationModified ? (
366367
<>

0 commit comments

Comments
 (0)