mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-27 00:59:39 +02:00
Omit trend if zero in sidebar (#1173)
* Omit trend if zero in sidebar * Lint fix
This commit is contained in:
parent
277e4476d9
commit
c28dd8f940
1 changed files with 8 additions and 6 deletions
|
@ -39,6 +39,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="flex flex-col ml-auto font-medium text-right">
|
<div class="flex flex-col ml-auto font-medium text-right">
|
||||||
<p><%= format_money account.balance_money %></p>
|
<p><%= format_money account.balance_money %></p>
|
||||||
|
<% unless account_value_node.series.trend.direction.flat? %>
|
||||||
<div class="flex items-center gap-1">
|
<div class="flex items-center gap-1">
|
||||||
<%=
|
<%=
|
||||||
tag.div(
|
tag.div(
|
||||||
|
@ -56,6 +57,7 @@
|
||||||
<% styles = trend_styles(account_value_node.series.trend) %>
|
<% styles = trend_styles(account_value_node.series.trend) %>
|
||||||
<span class="text-xs <%= styles[:text_class] %>"><%= sprintf("%+.2f", account_value_node.series.trend.percent) %>%</span>
|
<span class="text-xs <%= styles[:text_class] %>"><%= sprintf("%+.2f", account_value_node.series.trend.percent) %>%</span>
|
||||||
</div>
|
</div>
|
||||||
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue