mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	Fix linking piggy banks to transactions.
This commit is contained in:
		| @@ -23,11 +23,10 @@ | ||||
|             </td> | ||||
|  | ||||
|             <td style="text-align: right;"> | ||||
|  | ||||
|                 {% if event.amount < 0 %} | ||||
|                     <span class="text-danger money-negative">{{ trans('firefly.removed_amount', {amount: formatAmountBySymbol(event.amount,event.piggyBank.transactionCurrency.symbol, false)})|raw }}</span> | ||||
|                     <span class="text-danger money-negative">{{ trans('firefly.removed_amount', {amount: formatAmountBySymbol(event.amount,event.piggyBank.transactionCurrency.symbol, event.piggyBank.transactionCurrency.decimal_places, false)})|raw }}</span> | ||||
|                 {% else %} | ||||
|                      <span class="text-success money-positive">{{ trans('firefly.added_amount', {amount: formatAmountBySymbol(event.amount, event.piggyBank.transactionCurrency.symbol, false)})|raw }}</span> | ||||
|                      <span class="text-success money-positive">{{ trans('firefly.added_amount', {amount: formatAmountBySymbol(event.amount, event.piggyBank.transactionCurrency.symbol, event.piggyBank.transactionCurrency.decimal_places, false)})|raw }}</span> | ||||
|                 {% endif %} | ||||
|             </td> | ||||
|         </tr> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user