mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-28 17:24:35 -06:00
Fix a rare issue where ID's are missing. Probably the root cause is something else.
This commit is contained in:
parent
8079fab472
commit
1f1829e3b5
@ -148,11 +148,11 @@ TODO: hide and show columns
|
||||
{{ transaction.date.formatLocalized(monthAndDayFormat) }}
|
||||
</td>
|
||||
<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>
|
||||
</td>
|
||||
<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>
|
||||
</td>
|
||||
{% if showCategory %}
|
||||
|
Loading…
Reference in New Issue
Block a user