From b859c261252e9d65f8f3429daf57890883aefd9c Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Mon, 12 May 2025 14:56:03 -0400 Subject: [PATCH] Render the "last active at" timestamp in the card meta because this is what the "closing soon" bubbles et al are triggered on. --- app/views/cards/display/common/_meta.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/cards/display/common/_meta.html.erb b/app/views/cards/display/common/_meta.html.erb index acec071b1..298e266f9 100644 --- a/app/views/cards/display/common/_meta.html.erb +++ b/app/views/cards/display/common/_meta.html.erb @@ -13,7 +13,7 @@   <% else %> Updated - <%= local_datetime_tag(card.updated_at, style: :daysago) %> + <%= local_datetime_tag(card.last_active_at, style: :daysago) %> <% end %>