Browse Source
Merge branch 'main' into feature/improve-validation-of-currency-management-in-admin-control-panel
pull/4334/head
Thomas Kaul
6 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
6 additions and
0 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.component.ts
-
libs/ui/src/lib/tags-selector/tags-selector.component.ts
|
|
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Reloaded the available tags after creating a custom tag in the holding detail dialog (experimental) |
|
|
|
- Improved the validation of the currency management in the admin control panel |
|
|
|
- Migrated the `@ghostfolio/client` components to control flow |
|
|
|
- Migrated the `@ghostfolio/ui` components to control flow |
|
|
|
|
|
@ -175,6 +175,9 @@ export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit { |
|
|
|
] |
|
|
|
}); |
|
|
|
}), |
|
|
|
switchMap(() => { |
|
|
|
return this.userService.get(true); |
|
|
|
}), |
|
|
|
takeUntil(this.unsubscribeSubject) |
|
|
|
) |
|
|
|
.subscribe(); |
|
|
|
|
|
@ -1,4 +1,5 @@ |
|
|
|
import { COMMA, ENTER } from '@angular/cdk/keycodes'; |
|
|
|
import { CommonModule } from '@angular/common'; |
|
|
|
import { |
|
|
|
ChangeDetectionStrategy, |
|
|
|
Component, |
|
|
@ -27,6 +28,7 @@ import { BehaviorSubject, Subject, takeUntil } from 'rxjs'; |
|
|
|
@Component({ |
|
|
|
changeDetection: ChangeDetectionStrategy.OnPush, |
|
|
|
imports: [ |
|
|
|
CommonModule, |
|
|
|
FormsModule, |
|
|
|
MatAutocompleteModule, |
|
|
|
MatChipsModule, |
|
|
|