fix(status): format active/queued jobs stat with thousands separator
This commit is contained in:
parent
dcec2b3b37
commit
d100e56edb
1 changed files with 1 additions and 1 deletions
|
|
@ -487,7 +487,7 @@ defmodule MicrowavepropWeb.StatusLive do
|
|||
<div class="stat">
|
||||
<div class="stat-title">Active/Queued Jobs</div>
|
||||
<div class="stat-value text-2xl">
|
||||
{Enum.reduce(@stats.by_worker, 0, fn w, acc -> acc + w.total end)}
|
||||
{Format.number(Enum.reduce(@stats.by_worker, 0, fn w, acc -> acc + w.total end))}
|
||||
</div>
|
||||
</div>
|
||||
<div class="stat">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue