mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 02:26:58 +00:00
This commit is contained in:
@@ -3,6 +3,12 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## 6.1.3 - 2024-01-03
|
||||
|
||||
### Fixed
|
||||
|
||||
- #8326 Asking for non-zero foreign amount despite not being used
|
||||
|
||||
## 6.1.2 - 2024-01-03
|
||||
|
||||
### Changed
|
||||
|
@@ -114,7 +114,7 @@ return [
|
||||
'handle_debts' => true,
|
||||
// see cer.php for exchange rates feature flag.
|
||||
],
|
||||
'version' => '6.1.2',
|
||||
'version' => '6.1.3',
|
||||
'api_version' => '2.0.12',
|
||||
'db_version' => 22,
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
@@ -451,7 +451,7 @@ export default {
|
||||
if (typeof window.expectedSourceTypes === 'undefined') {
|
||||
console.error('window.expectedSourceTypes is unexpectedly empty.')
|
||||
}
|
||||
this.transactions.push({
|
||||
let result = {
|
||||
transaction_journal_id: transaction.transaction_journal_id,
|
||||
description: transaction.description,
|
||||
date: transaction.date.substring(0, 16),
|
||||
@@ -521,7 +521,11 @@ export default {
|
||||
currency_decimal_places: transaction.currency_decimal_places,
|
||||
allowed_types: window.expectedSourceTypes.destination[this.ucFirst(transaction.type)]
|
||||
}
|
||||
});
|
||||
};
|
||||
if(null === transaction.foreign_amount) {
|
||||
result.foreign_amount.amount = '';
|
||||
}
|
||||
this.transactions.push(result);
|
||||
},
|
||||
limitSourceType: function (type) {
|
||||
// let i;
|
||||
|
Reference in New Issue
Block a user