2025-05-23 11:46:12 -05:00
|
|
|
<% cache Current.family.build_cache_key("account_#{@account.id}_sparkline_html") do %>
|
|
|
|
<%= turbo_frame_tag dom_id(@account, :sparkline) do %>
|
|
|
|
<div class="flex items-center justify-end gap-1">
|
|
|
|
<div class="w-8 h-5">
|
2025-05-26 20:16:07 -05:00
|
|
|
<%= render "shared/sparkline", id: dom_id(@account, :sparkline_chart), series: @sparkline_series %>
|
2025-05-23 11:46:12 -05:00
|
|
|
</div>
|
2025-02-21 11:57:59 -05:00
|
|
|
|
2025-05-26 20:16:07 -05:00
|
|
|
<%= tag.p @sparkline_series.trend.percent_formatted,
|
|
|
|
style: "color: #{@sparkline_series.trend.color}",
|
2025-05-23 11:46:12 -05:00
|
|
|
class: "font-mono text-right text-xs font-medium text-primary" %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
2025-02-21 11:57:59 -05:00
|
|
|
<% end %>
|