Browse Source
Bugfix/handle empty locale string in scraper configuration (#7109)
* Handle empty locale string in scraper configuration
* Update changelog
pull/7114/head^2
Thomas Kaul
4 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts
|
|
|
@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed the disabled state of the delete action in the asset profiles actions menu of the historical market data table in the admin control panel |
|
|
|
- Fixed the persistence of an empty `locale` string in the scraper configuration |
|
|
|
|
|
|
|
## 3.14.0 - 2026-06-22 |
|
|
|
|
|
|
|
|
|
|
|
@ -550,7 +550,7 @@ export class GfAssetProfileDialogComponent implements OnInit { |
|
|
|
) as Record<string, string>, |
|
|
|
locale: |
|
|
|
this.assetProfileForm.controls.scraperConfiguration.controls.locale |
|
|
|
?.value ?? undefined, |
|
|
|
?.value || undefined, |
|
|
|
mode: |
|
|
|
this.assetProfileForm.controls.scraperConfiguration.controls.mode |
|
|
|
?.value ?? undefined, |
|
|
|
|