Task/move copy-to-clipboard button for ISIN and symbol in holding detail dialog to general availability (#6781)

* Move copy-to-clipboard buttons from experimental to general availability

* Update changelog
pull/6783/head
Thomas Kaul 2 months ago committed by GitHub
parent 75e2b855c0
commit b455e9278e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Moved the copy-to-clipboard button for the ISIN number in the holding detail dialog from experimental to general availability
- Moved the copy-to-clipboard button for the symbol in the holding detail dialog from experimental to general availability
- Improved the styling of buttons and input fields across various components
- Upgraded `prettier` from version `3.8.2` to `3.8.3`

@ -310,9 +310,7 @@
<gf-value
i18n
size="medium"
[enableCopyToClipboardButton]="
user?.settings?.isExperimentalFeatures
"
[enableCopyToClipboardButton]="true"
[hidden]="!SymbolProfile?.symbol"
[value]="SymbolProfile?.symbol"
>Symbol</gf-value
@ -321,9 +319,7 @@
<div class="col-6 mb-3">
<gf-value
size="medium"
[enableCopyToClipboardButton]="
user?.settings?.isExperimentalFeatures
"
[enableCopyToClipboardButton]="true"
[hidden]="!SymbolProfile?.isin"
[value]="SymbolProfile?.isin"
>ISIN</gf-value

Loading…
Cancel
Save