Browse Source

Task/include selected profile count in market data delete action (#7064)

* Include selected profile count

* Update changelog
pull/7072/head^2
David Requeno 3 days ago
committed by GitHub
parent
commit
2589a60f28
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 13
      apps/client/src/app/components/admin-market-data/admin-market-data.html

4
CHANGELOG.md

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
### Changed
- Added the selected asset profile count to the delete menu item of the historical market data table in the admin control panel
### Fixed ### Fixed
- Fixed an issue with the localization of the country names - Fixed an issue with the localization of the country names

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

@ -239,7 +239,18 @@
[disabled]="!selection.hasValue()" [disabled]="!selection.hasValue()"
(click)="onDeleteAssetProfiles()" (click)="onDeleteAssetProfiles()"
> >
<ng-container i18n>Delete Profiles</ng-container> <ng-container i18n
>Delete
{{
selection.selected.length > 1
? selection.selected.length
: ''
}}
{selection.selected.length, plural,
=1 {Profile}
other {Profiles}
}</ng-container
>
</button> </button>
</mat-menu> </mat-menu>
</th> </th>

Loading…
Cancel
Save