mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +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) }} | ||||
|                 </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 %} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user