From 80a688995a9b33efe803aba1baf41e5d2ef07a2a Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sat, 17 Jan 2026 17:07:02 -0600 Subject: [PATCH] Flip inbound/outbound graphs on device traffic chart Swapped dataset order so Inbound appears first, Outbound second --- lib/towerops_web/live/device_live/show.ex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/towerops_web/live/device_live/show.ex b/lib/towerops_web/live/device_live/show.ex index 6a3069a1..72caaf85 100644 --- a/lib/towerops_web/live/device_live/show.ex +++ b/lib/towerops_web/live/device_live/show.ex @@ -398,8 +398,8 @@ defmodule ToweropsWeb.DeviceLive.Show do out_data = calculate_bps_data(all_stats, :outbound) datasets = [ - %{label: "Outbound", data: out_data}, - %{label: "Inbound", data: in_data} + %{label: "Inbound", data: in_data}, + %{label: "Outbound", data: out_data} ] Jason.encode!(%{datasets: datasets})