Feature/improve check for duplicates in preview step of activities import (comments) (#4498)
* Improve check for duplicates in preview step of activities import (comments) * Update changelog
This commit is contained in:
parent
6ae22d13ec
commit
5754f01819
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
### Changed
|
||||
|
||||
- Improved the check for duplicates in the preview step of the activities import (allow different comments)
|
||||
- Improved the language localization for German (`fr`)
|
||||
- Upgraded `ng-extract-i18n-merge` from version `2.14.1` to `2.14.3`
|
||||
|
||||
|
@ -519,6 +519,7 @@ export class ImportService {
|
||||
const isDuplicate = existingActivities.some((activity) => {
|
||||
return (
|
||||
activity.accountId === accountId &&
|
||||
activity.comment === comment &&
|
||||
activity.SymbolProfile.currency === currency &&
|
||||
activity.SymbolProfile.dataSource === dataSource &&
|
||||
isSameSecond(activity.date, date) &&
|
||||
|
Loading…
x
Reference in New Issue
Block a user