Browse Source
Feature/reload available tags after creating custom tag in holding detail dialog (#4328)
* Reload user to get available tags after creating custom tag
* Update changelog
pull/4334/head^2
Thomas Kaul
1 month ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
4 additions and
0 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.component.ts
|
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
### Changed |
|
|
### Changed |
|
|
|
|
|
|
|
|
|
|
|
- Reloaded the available tags after creating a custom tag in the holding detail dialog (experimental) |
|
|
- Migrated the `@ghostfolio/client` components to control flow |
|
|
- Migrated the `@ghostfolio/client` components to control flow |
|
|
- Migrated the `@ghostfolio/ui` 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) |
|
|
takeUntil(this.unsubscribeSubject) |
|
|
) |
|
|
) |
|
|
.subscribe(); |
|
|
.subscribe(); |
|
|