Browse Source
Feature/extend asset profile details dialog with copy to clipboard buttons for ISIN and symbol (#7124)
* Extend dialog with copy-to-clipboard button for ISIN number and symbol
* Update changelog
pull/7129/head
Thomas Kaul
5 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
8 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html
|
|
|
@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Added pagination to the platform management of the admin control panel |
|
|
|
- Added pagination to the tag management of the admin control panel |
|
|
|
- Extended the asset profile details dialog of the admin control panel with a copy-to-clipboard button for the ISIN number |
|
|
|
- Extended the asset profile details dialog of the admin control panel with a copy-to-clipboard button for the symbol |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
@ -165,7 +165,11 @@ |
|
|
|
</div> |
|
|
|
} @else { |
|
|
|
<div class="col-6 mb-3"> |
|
|
|
<gf-value i18n size="medium" [value]="assetProfile?.symbol" |
|
|
|
<gf-value |
|
|
|
i18n |
|
|
|
size="medium" |
|
|
|
[enableCopyToClipboardButton]="true" |
|
|
|
[value]="assetProfile?.symbol" |
|
|
|
>Symbol</gf-value |
|
|
|
> |
|
|
|
</div> |
|
|
|
@ -202,6 +206,7 @@ |
|
|
|
<div class="col-6 mb-3"> |
|
|
|
<gf-value |
|
|
|
size="medium" |
|
|
|
[enableCopyToClipboardButton]="true" |
|
|
|
[hidden]="!assetProfile?.isin" |
|
|
|
[value]="assetProfile?.isin" |
|
|
|
>ISIN</gf-value |
|
|
|
|