Browse Source

Merge branch 'main' into feature/add-data-source-as-unique-constraint-to-market-data-schema

pull/1889/head
Thomas Kaul 2 years ago
committed by GitHub
parent
commit
1a67ebf330
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CHANGELOG.md
  2. 7
      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 `dataSource` as a unique constraint to the `MarketData` database schema
### Fixed
- Removed the unnecessary sort header of the comment column in the historical market data table of the admin control panel
## 1.259.0 - 2023-04-22
### Added

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

@ -101,12 +101,7 @@
</ng-container>
<ng-container matColumnDef="comment">
<th
*matHeaderCellDef
class="px-1"
mat-header-cell
mat-sort-header
></th>
<th *matHeaderCellDef class="px-1" mat-header-cell></th>
<td *matCellDef="let element" class="px-1" mat-cell>
<ion-icon
*ngIf="element.comment"

Loading…
Cancel
Save