diff --git a/CHANGELOG.md b/CHANGELOG.md index 5aa09d891..0fe436df3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added support to toggle the data gathering for individual asset profiles in the asset profile details dialog of the admin control panel +### Changed + +- Improved the check for duplicates in the preview step of the activities import (allow different comments) +- Improved the language localization for German (`fr`) +- Improved the language localization for Polish (`pl`) +- Upgraded `ng-extract-i18n-merge` from version `2.14.1` to `2.14.3` + ## 2.149.0 - 2025-03-30 ### Added diff --git a/apps/api/src/app/import/import.service.ts b/apps/api/src/app/import/import.service.ts index 7ca6833fa..c72420417 100644 --- a/apps/api/src/app/import/import.service.ts +++ b/apps/api/src/app/import/import.service.ts @@ -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) && diff --git a/apps/client/src/app/components/user-account-membership/user-account-membership.html b/apps/client/src/app/components/user-account-membership/user-account-membership.html index 64dd2ce8f..dafbfa9c5 100644 --- a/apps/client/src/app/components/user-account-membership/user-account-membership.html +++ b/apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -4,7 +4,10 @@
@if (hasPermissionToCreateApiKey) { -