diff --git a/lib/microwaveprop/propagation/pipeline_status.ex b/lib/microwaveprop/propagation/pipeline_status.ex index af25ff9a..13a923a4 100644 --- a/lib/microwaveprop/propagation/pipeline_status.ex +++ b/lib/microwaveprop/propagation/pipeline_status.ex @@ -97,9 +97,9 @@ defmodule Microwaveprop.Propagation.PipelineStatus do end end - defp running_label(@grid_worker), do: "Updating propagation (HRRR run)…" - defp running_label(@asos_worker), do: "Updating propagation (ASOS nudge)…" - defp running_label(_), do: "Updating propagation…" + defp running_label(@grid_worker), do: "Updating propagation (HRRR run)" + defp running_label(@asos_worker), do: "Updating propagation (ASOS nudge)" + defp running_label(_), do: "Updating propagation" defp format_age(0), do: "just now" defp format_age(1), do: "1m" diff --git a/lib/microwaveprop_web/live/map_live.ex b/lib/microwaveprop_web/live/map_live.ex index c3109988..6e720a27 100644 --- a/lib/microwaveprop_web/live/map_live.ex +++ b/lib/microwaveprop_web/live/map_live.ex @@ -368,25 +368,25 @@ defmodule MicrowavepropWeb.MapLive do
<%= case @status.state do %> <% :running -> %> <.icon name="hero-arrow-path" - class="size-3.5 shrink-0 text-info motion-safe:animate-spin" + class="size-3.5 shrink-0 mt-0.5 text-info motion-safe:animate-spin" /> - {@status.label} + {@status.label} <% :idle -> %> - - {@status.label} + + {@status.label} <% :stale -> %> - - {@status.label} + + {@status.label} <% :unknown -> %> - - {@status.label} + + {@status.label} <% end %>
""" @@ -608,8 +608,6 @@ defmodule MicrowavepropWeb.MapLive do - <.pipeline_status_chip id="pipeline-status-desktop" status={@pipeline_status} /> - <%!-- Band selector --%>