From d100e56edb74fe96e7ecbd9f5a3eef9f711d590f Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Fri, 24 Apr 2026 12:03:24 -0500 Subject: [PATCH] fix(status): format active/queued jobs stat with thousands separator --- lib/microwaveprop_web/live/status_live.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/microwaveprop_web/live/status_live.ex b/lib/microwaveprop_web/live/status_live.ex index cec75103..0d927c51 100644 --- a/lib/microwaveprop_web/live/status_live.ex +++ b/lib/microwaveprop_web/live/status_live.ex @@ -487,7 +487,7 @@ defmodule MicrowavepropWeb.StatusLive do
Active/Queued Jobs
- {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))}