Rende usabili i filtri destinatari e permette di eliminare le bozze email.
CI / scan_ruby (push) Failing after 12m54s
CI / scan_js (push) Successful in 12m34s
CI / lint (push) Failing after 13m10s

Le listbox non applicavano sport e altri criteri; ora i filtri sono checkbox, c'è «mai contattati» e dal cruscotto si cancellano le bozze. La lista organizzazioni allinea le colonne al foglio campagna.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-09-07 07:57:50 +02:00
co-authored by Cursor
parent e492c43bf8
commit 3e73e708e4
16 changed files with 1114 additions and 90 deletions
+8
View File
@@ -232,6 +232,14 @@ module ApplicationHelper
value ? "" : "No"
end
def table_clip(text, length: 36)
return "" if text.blank?
value = text.to_s.strip
label = value.length > length ? "#{value[0, length]}" : value
tag.span label, title: value, class: "inline-block max-w-[14rem] truncate align-bottom"
end
def external_link(url, **options)
return "" if url.blank?