diff --git a/lib/microwaveprop_web/live/live_stash_guard.ex b/lib/microwaveprop_web/live/live_stash_guard.ex index e9c053a3..8231088a 100644 --- a/lib/microwaveprop_web/live/live_stash_guard.ex +++ b/lib/microwaveprop_web/live/live_stash_guard.ex @@ -28,7 +28,10 @@ defmodule MicrowavepropWeb.LiveStashGuard do LiveStash.stash(socket) rescue e in ArgumentError -> - Logger.warning("LiveStashGuard: stash skipped (#{Exception.message(e)})") + # Expected on OTP 28 with LiveStash 0.2.0 — fires on every event + # that triggers a stash. Log at debug so the cause stays + # observable without flooding prod logs. + Logger.debug("LiveStashGuard: stash skipped (#{Exception.message(e)})") socket end end diff --git a/lib/microwaveprop_web/live/map_live.ex b/lib/microwaveprop_web/live/map_live.ex index 5ea59b00..278a7196 100644 --- a/lib/microwaveprop_web/live/map_live.ex +++ b/lib/microwaveprop_web/live/map_live.ex @@ -1023,6 +1023,9 @@ defmodule MicrowavepropWeb.MapLive do <.link navigate="/path" class="btn btn-xs btn-ghost justify-start"> Path Calculator + <.link navigate="/eme" class="btn btn-xs btn-ghost justify-start"> + EME + <.link navigate="/beacons" class="btn btn-xs btn-ghost justify-start"> Beacons @@ -1165,6 +1168,9 @@ defmodule MicrowavepropWeb.MapLive do
  • <.link navigate="/path">Path Calculator
  • +
  • + <.link navigate="/eme">EME +
  • <.link navigate="/beacons">Beacons
  • diff --git a/lib/microwaveprop_web/live/weather_map_live.ex b/lib/microwaveprop_web/live/weather_map_live.ex index c3b7206c..69414635 100644 --- a/lib/microwaveprop_web/live/weather_map_live.ex +++ b/lib/microwaveprop_web/live/weather_map_live.ex @@ -521,6 +521,9 @@ defmodule MicrowavepropWeb.WeatherMapLive do <.link navigate="/path" class="btn btn-xs btn-ghost justify-start"> Path Calculator + <.link navigate="/eme" class="btn btn-xs btn-ghost justify-start"> + EME + <.link navigate="/beacons" class="btn btn-xs btn-ghost justify-start"> Beacons @@ -671,6 +674,9 @@ defmodule MicrowavepropWeb.WeatherMapLive do
  • <.link navigate="/path">Path Calculator
  • +
  • + <.link navigate="/eme">EME +
  • <.link navigate="/beacons">Beacons