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
parent
commit
8163966212
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 6
      apps/client/src/app/components/admin-market-data/admin-market-data.html

4
CHANGELOG.md

@ -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

6
apps/client/src/app/components/admin-market-data/admin-market-data.html

@ -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

Loading…
Cancel
Save