Browse Source
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
6 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
4 additions and
6 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html
|
|
@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
### Changed |
|
|
### 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 |
|
|
- Improved the styling of buttons and input fields across various components |
|
|
- Upgraded `prettier` from version `3.8.2` to `3.8.3` |
|
|
- Upgraded `prettier` from version `3.8.2` to `3.8.3` |
|
|
|
|
|
|
|
|
|
|
|
@ -310,9 +310,7 @@ |
|
|
<gf-value |
|
|
<gf-value |
|
|
i18n |
|
|
i18n |
|
|
size="medium" |
|
|
size="medium" |
|
|
[enableCopyToClipboardButton]=" |
|
|
[enableCopyToClipboardButton]="true" |
|
|
user?.settings?.isExperimentalFeatures |
|
|
|
|
|
" |
|
|
|
|
|
[hidden]="!SymbolProfile?.symbol" |
|
|
[hidden]="!SymbolProfile?.symbol" |
|
|
[value]="SymbolProfile?.symbol" |
|
|
[value]="SymbolProfile?.symbol" |
|
|
>Symbol</gf-value |
|
|
>Symbol</gf-value |
|
|
@ -321,9 +319,7 @@ |
|
|
<div class="col-6 mb-3"> |
|
|
<div class="col-6 mb-3"> |
|
|
<gf-value |
|
|
<gf-value |
|
|
size="medium" |
|
|
size="medium" |
|
|
[enableCopyToClipboardButton]=" |
|
|
[enableCopyToClipboardButton]="true" |
|
|
user?.settings?.isExperimentalFeatures |
|
|
|
|
|
" |
|
|
|
|
|
[hidden]="!SymbolProfile?.isin" |
|
|
[hidden]="!SymbolProfile?.isin" |
|
|
[value]="SymbolProfile?.isin" |
|
|
[value]="SymbolProfile?.isin" |
|
|
>ISIN</gf-value |
|
|
>ISIN</gf-value |
|
|
|