Browse Source
Bugfix/fix word wrap in menu of historical market data table of admin control panel (#4562)
* Fix word wrap
* Update changelog
pull/4568/head
Thomas Kaul
2 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
9 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/admin-market-data/admin-market-data.html
|
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Added `watchlist` to the `User` database schema as a preparation for watching assets |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed the word wrap in the menu of the historical market data table in the admin control panel |
|
|
|
|
|
|
|
## 2.153.0 - 2025-04-18 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
@ -215,7 +215,11 @@ |
|
|
|
> |
|
|
|
<ion-icon name="ellipsis-vertical" /> |
|
|
|
</button> |
|
|
|
<mat-menu #assetProfilesActionsMenu="matMenu" xPosition="before"> |
|
|
|
<mat-menu |
|
|
|
#assetProfilesActionsMenu="matMenu" |
|
|
|
class="no-max-width" |
|
|
|
xPosition="before" |
|
|
|
> |
|
|
|
<button mat-menu-item (click)="onGather7Days()"> |
|
|
|
<ng-container i18n |
|
|
|
>Gather Recent Historical Market Data</ng-container |
|
|
|