fix(status): format active/queued jobs stat with thousands separator

This commit is contained in:
Graham McIntire 2026-04-24 12:03:24 -05:00
parent dcec2b3b37
commit d100e56edb
No known key found for this signature in database
GPG key ID: F4ABF488E6029E59

View file

@ -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">