diff --git a/CHANGELOG.md b/CHANGELOG.md index 68117a0ea..b75b5f393 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Upgraded `Nx` from version `20.8.1` to `21.1.2` +### Fixed + +- Fixed an issue where the import button was not correctly enabled in the import activities dialog + ## 2.166.0 - 2025-06-05 ### Added diff --git a/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts b/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts index 20f135801..3abf3a042 100644 --- a/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts +++ b/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -330,6 +330,7 @@ export class ImportActivitiesDialog implements OnDestroy { } finally { this.importStep = ImportStep.SELECT_ACTIVITIES; this.snackBar.dismiss(); + this.updateSelection(this.activities); stepper.next();