Browse Source
Bugfix/add missing CommonModule import in import activities dialog (#5674)
* Add missing CommonModule import
* Update changelog
pull/5653/head^2
Thomas Kaul
2 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
3 additions and
0 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts
|
|
@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Handled an exception in the get asset profile functionality of the _Financial Modeling Prep_ service |
|
|
|
- Added the missing `CommonModule` import in the import activities dialog |
|
|
|
|
|
|
|
## 2.205.0 - 2025-10-01 |
|
|
|
|
|
|
|
|
|
@ -15,6 +15,7 @@ import { |
|
|
|
StepperOrientation, |
|
|
|
StepperSelectionEvent |
|
|
|
} from '@angular/cdk/stepper'; |
|
|
|
import { CommonModule } from '@angular/common'; |
|
|
|
import { |
|
|
|
ChangeDetectionStrategy, |
|
|
|
ChangeDetectorRef, |
|
|
@ -59,6 +60,7 @@ import { ImportActivitiesDialogParams } from './interfaces/interfaces'; |
|
|
|
changeDetection: ChangeDetectionStrategy.OnPush, |
|
|
|
host: { class: 'd-flex flex-column h-100' }, |
|
|
|
imports: [ |
|
|
|
CommonModule, |
|
|
|
GfActivitiesTableComponent, |
|
|
|
GfDialogFooterComponent, |
|
|
|
GfDialogHeaderComponent, |
|
|
|