Browse Source

Bugfix/fix horizontal overflow in historical market data table of admin control panel (#3515)

* Fix horizontal overflow

* Update changelog
pull/3522/head
Thomas Kaul 7 months ago
committed by GitHub
parent
commit
469c1936b4
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 2
      apps/client/src/app/components/admin-market-data/admin-market-data.html

1
CHANGELOG.md

@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fixed the dialog position (center) on mobile
- Fixed the horizontal overflow in the historical market data table of the admin control panel
- Changed the mechanism of the `INTRADAY` data gathering to persist data only if the market state is `OPEN`
- Fixed the creation of activities with `MANUAL` data source (with no historical market data)

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

@ -11,6 +11,7 @@
</div>
<div class="row">
<div class="col">
<div class="overflow-x-auto">
<table
class="gf-table w-100"
mat-table
@ -213,6 +214,7 @@
"
></tr>
</table>
</div>
<mat-paginator
[length]="totalItems"

Loading…
Cancel
Save