diff --git a/CHANGELOG.md b/CHANGELOG.md index 94f5b12ef..dd4c0a2c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Extended the benchmark detail dialog by the current market price - Added `watchlist` to the `User` database schema as a preparation for watching assets +### Changed + +- Made the historical market data editor expandable in the admin control panel + ### Fixed - Fixed the word wrap in the menu of the historical market data table in the admin control panel diff --git a/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html b/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html index 32f946ad8..ab3468dcd 100644 --- a/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html +++ b/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -77,17 +77,29 @@ [showYAxis]="true" [symbol]="data.symbol" /> - +
+ + + + Historical Market Data + + + + + +
@if (isEditAssetProfileIdentifierMode) { @@ -360,8 +372,10 @@ (closed)="scraperConfiguationIsExpanded.set(false)" (opened)="scraperConfiguationIsExpanded.set(true)" > - - Scraper Configuration + + Scraper Configuration
diff --git a/libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor.component.html b/libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor.component.html index b72ba15f8..c64d597b5 100644 --- a/libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor.component.html +++ b/libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor.component.html @@ -1,7 +1,7 @@
@for (itemByMonth of marketDataByMonth | keyvalue; track itemByMonth) {
-
{{ itemByMonth.key }}
+
{{ itemByMonth.key }}
@for (dayItem of days; track dayItem; let i = $index) {