mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-05 21:53:08 -06:00
Should fix a bug in Travis.
This commit is contained in:
parent
bac392d331
commit
030d241130
@ -27,7 +27,11 @@
|
|||||||
<a href="{{ route('budgets.show',balanceLine.getBudget.id) }}">{{ balanceLine.getTitle }}</a>
|
<a href="{{ route('budgets.show',balanceLine.getBudget.id) }}">{{ balanceLine.getTitle }}</a>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{ balanceLine.getBudget.amount|formatAmount }}
|
{% if(balanceLine.getBudget.amount) %}
|
||||||
|
{{ balanceLine.getBudget.amount|formatAmount }}
|
||||||
|
{% else %}
|
||||||
|
{{ '0'|formatAmount }}
|
||||||
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
{% else %}
|
{% else %}
|
||||||
<td colspan="2">{{ balanceLine.getTitle }}</td>
|
<td colspan="2">{{ balanceLine.getTitle }}</td>
|
||||||
|
Loading…
Reference in New Issue
Block a user