From 05287274054b0b417246cda9f38fb3b18ec7062a Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sun, 19 Apr 2026 17:18:14 -0500 Subject: [PATCH] refactor(status): drop verbose per-task detail line under grid_tasks panel The f## badges in the table row already convey what's in flight; the 'run_time=... fh=... attempt=...' dump below it was noise. --- lib/microwaveprop_web/live/status_live.ex | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/microwaveprop_web/live/status_live.ex b/lib/microwaveprop_web/live/status_live.ex index d0d8e5b0..db8e2cff 100644 --- a/lib/microwaveprop_web/live/status_live.ex +++ b/lib/microwaveprop_web/live/status_live.ex @@ -559,16 +559,6 @@ defmodule MicrowavepropWeb.StatusLive do - <%= if @grid_tasks.running != [] do %> -
- <%= for r <- @grid_tasks.running do %> - - run_time={Calendar.strftime(r.run_time, "%Y-%m-%d %H:%M")}Z - fh=f{String.pad_leading(Integer.to_string(r.forecast_hour), 2, "0")} attempt={r.attempt} - - <% end %> -
- <% end %>

Enrichment Status by Type