mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	Expand frontend, first attempt at sorting.
This commit is contained in:
		| @@ -175,6 +175,11 @@ let transactions = function () { | ||||
|                 console.log('Transaction type is detected to be "' + this.groupProperties.transactionType + '".'); | ||||
|                 return; | ||||
|             } | ||||
|             if ('unknown' === sourceType && ['Asset account', 'Debt', 'Loan', 'Mortgage'].includes(destType)) { | ||||
|                 this.groupProperties.transactionType = 'deposit'; | ||||
|                 console.log('Transaction type is detected to be "' + this.groupProperties.transactionType + '".'); | ||||
|                 return; | ||||
|             } | ||||
|             if (['Debt', 'Loan', 'Mortgage'].includes(sourceType) && 'Asset account' === destType) { | ||||
|                 this.groupProperties.transactionType = 'deposit'; | ||||
|                 console.log('Transaction type is detected to be "' + this.groupProperties.transactionType + '".'); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user