From 886e38547e347fa4907cf878ce7765a245fef1d4 Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Mon, 3 Nov 2025 11:50:36 -0600 Subject: [PATCH] This shouldn't be visible when the card is already postponed Fixes: https://app.box-car.com/5986089/cards/128 --- app/views/cards/container/_closure.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/cards/container/_closure.html.erb b/app/views/cards/container/_closure.html.erb index 07d227c4f..c40da47b9 100644 --- a/app/views/cards/container/_closure.html.erb +++ b/app/views/cards/container/_closure.html.erb @@ -12,9 +12,9 @@ <% end %>
- <% if card.entropic? && card.open? %> + <% if card.entropic? && card.open? && !card.postponed? %>
- Closes as "Not Now" <%= local_datetime_tag(card.entropy.auto_clean_at, style: :indays) -%> if there's no activity. + Closes as “Not Now” <%= local_datetime_tag(card.entropy.auto_clean_at, style: :indays) -%> if there’s no activity.
<% end %>