Browse Source
Merge branch 'main' into task/migrate-create-or-update-access-dialog
pull/5467/head
Thomas Kaul
4 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
8 additions and
4 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/data-provider-status/data-provider-status.component.ts
|
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
- Refactored the create or update access dialog component to standalone |
|
|
- Refactored the create or update access dialog component to standalone |
|
|
|
|
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
- Fixed an issue related to the error handling in the data provider status component |
|
|
|
|
|
|
|
|
## 2.196.0 - 2025-09-04 |
|
|
## 2.196.0 - 2025-09-04 |
|
|
|
|
|
|
|
|
### Changed |
|
|
### Changed |
|
|
@ -23,7 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
- Refactored the benchmark comparator component to standalone |
|
|
- Refactored the benchmark comparator component to standalone |
|
|
- Refactored the portfolio summary component to standalone |
|
|
- Refactored the portfolio summary component to standalone |
|
|
- Refactored the world map chart component to standalone |
|
|
- Refactored the world map chart component to standalone |
|
|
- Enbabled the trim option in the `extract-i18n` configuration |
|
|
- Enabled the trim option in the `extract-i18n` configuration |
|
|
- Improved the language localization for German (`de`) |
|
|
- Improved the language localization for German (`de`) |
|
|
- Upgraded the _Stripe_ dependencies |
|
|
- Upgraded the _Stripe_ dependencies |
|
|
- Upgraded `ngx-device-detector` from version `10.0.2` to `10.1.0` |
|
|
- Upgraded `ngx-device-detector` from version `10.0.2` to `10.1.0` |
|
|
|
|
|
@ -33,12 +33,12 @@ export class GfDataProviderStatusComponent implements OnDestroy, OnInit { |
|
|
this.status$ = this.dataService |
|
|
this.status$ = this.dataService |
|
|
.fetchDataProviderHealth(this.dataSource) |
|
|
.fetchDataProviderHealth(this.dataSource) |
|
|
.pipe( |
|
|
.pipe( |
|
|
catchError(() => { |
|
|
|
|
|
return of({ isHealthy: false }); |
|
|
|
|
|
}), |
|
|
|
|
|
map(() => { |
|
|
map(() => { |
|
|
return { isHealthy: true }; |
|
|
return { isHealthy: true }; |
|
|
}), |
|
|
}), |
|
|
|
|
|
catchError(() => { |
|
|
|
|
|
return of({ isHealthy: false }); |
|
|
|
|
|
}), |
|
|
takeUntil(this.unsubscribeSubject) |
|
|
takeUntil(this.unsubscribeSubject) |
|
|
); |
|
|
); |
|
|
} |
|
|
} |
|
|
|