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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
16 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/admin-market-data/admin-market-data.html
|
|
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
## 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 an issue with the localization of the country names |
|
|
|
|
|
|
|
@ -239,7 +239,18 @@ |
|
|
|
[disabled]="!selection.hasValue()" |
|
|
|
(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> |
|
|
|
</mat-menu> |
|
|
|
</th> |
|
|
|
|