Compare commits

...

4 Commits

Author SHA1 Message Date
James Cole
fa1a1b084b Merge branch 'release/v6.1.3' 2024-01-02 21:23:33 +01:00
James Cole
387e44b8b9 Update changelog. 2024-01-02 21:23:14 +01:00
James Cole
6dafa89a15 Fix https://github.com/firefly-iii/firefly-iii/issues/8326 2024-01-02 21:22:42 +01:00
James Cole
5b5b8008b0 Merge tag 'v6.1.2' into develop
v6.1.2
2024-01-02 20:26:54 +01:00
4 changed files with 14 additions and 4 deletions

View File

@@ -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
- [Issue 8326](https://github.com/firefly-iii/firefly-iii/issues/8326) Asking for non-zero foreign amount despite not being used
## 6.1.2 - 2024-01-03
### Changed

View File

@@ -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

View File

@@ -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;