Browse Source
Feature/add copy-to-clipboard buttons to holding detail dialog (#6640)
* Add copy to clipboard buttons for symbol and ISIN
* Update changelog
pull/6641/head^2
Thomas Kaul
13 hours ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
8 additions and
0 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html
|
|
|
@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
### Added |
|
|
|
|
|
|
|
- Added support for a copy-to-clipboard functionality in the value component |
|
|
|
- Extended the holding detail dialog by adding a copy-to-clipboard button for the ISIN number (experimental) |
|
|
|
- Extended the holding detail dialog by adding a copy-to-clipboard button for the symbol (experimental) |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
|
|
|
|
@ -310,6 +310,9 @@ |
|
|
|
<gf-value |
|
|
|
i18n |
|
|
|
size="medium" |
|
|
|
[enableCopyToClipboardButton]=" |
|
|
|
user?.settings?.isExperimentalFeatures |
|
|
|
" |
|
|
|
[hidden]="!SymbolProfile?.symbol" |
|
|
|
[value]="SymbolProfile?.symbol" |
|
|
|
>Symbol</gf-value |
|
|
|
@ -318,6 +321,9 @@ |
|
|
|
<div class="col-6 mb-3"> |
|
|
|
<gf-value |
|
|
|
size="medium" |
|
|
|
[enableCopyToClipboardButton]=" |
|
|
|
user?.settings?.isExperimentalFeatures |
|
|
|
" |
|
|
|
[hidden]="!SymbolProfile?.isin" |
|
|
|
[value]="SymbolProfile?.isin" |
|
|
|
>ISIN</gf-value |
|
|
|
|