From 715a20dd09ffadf40d330e63fd4dc3a773c17c96 Mon Sep 17 00:00:00 2001 From: Graham McIntie Date: Sat, 14 Feb 2026 09:57:37 -0600 Subject: [PATCH] fix: dashboard activity feed uses correct field names (summary/timestamp instead of description/inserted_at) --- lib/towerops_web/live/dashboard_live.html.heex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/towerops_web/live/dashboard_live.html.heex b/lib/towerops_web/live/dashboard_live.html.heex index 43a16f14..db01cc5c 100644 --- a/lib/towerops_web/live/dashboard_live.html.heex +++ b/lib/towerops_web/live/dashboard_live.html.heex @@ -516,10 +516,10 @@

- {activity.description} + {activity.summary}

- {Calendar.strftime(activity.inserted_at, "%b %d %H:%M")} + {Calendar.strftime(activity.timestamp, "%b %d %H:%M")} <%= if Map.get(activity, :actor_name) do %> by {activity.actor_name} <% end %>