mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-25 14:58:40 +00:00
Fix a rare issue where ID's are missing. Probably the root cause is something else.
This commit is contained in:
@@ -148,11 +148,11 @@ TODO: hide and show columns
|
|||||||
{{ transaction.date.formatLocalized(monthAndDayFormat) }}
|
{{ transaction.date.formatLocalized(monthAndDayFormat) }}
|
||||||
</td>
|
</td>
|
||||||
<td style=" {{ style|raw }}">
|
<td style=" {{ style|raw }}">
|
||||||
<a href="{{ route('accounts.show', [transaction.source_account_id]) }}"
|
<a href="{{ route('accounts.show', [transaction.source_account_id|default(1)]) }}"
|
||||||
title="{{ transaction.source_account_iban|default(transaction.source_account_name) }}">{{ transaction.source_account_name }}</a>
|
title="{{ transaction.source_account_iban|default(transaction.source_account_name) }}">{{ transaction.source_account_name }}</a>
|
||||||
</td>
|
</td>
|
||||||
<td style=" {{ style|raw }}">
|
<td style=" {{ style|raw }}">
|
||||||
<a href="{{ route('accounts.show', [transaction.destination_account_id]) }}"
|
<a href="{{ route('accounts.show', [transaction.destination_account_id|default(1)]) }}"
|
||||||
title="{{ transaction.destination_account_iban|default(transaction.destination_account_name) }}">{{ transaction.destination_account_name }}</a>
|
title="{{ transaction.destination_account_iban|default(transaction.destination_account_name) }}">{{ transaction.destination_account_name }}</a>
|
||||||
</td>
|
</td>
|
||||||
{% if showCategory %}
|
{% if showCategory %}
|
||||||
|
Reference in New Issue
Block a user