Browse Source

Merge branch 'main' into feature/add-copy-to-clipboard-button-to-user-detail-dialog

pull/6641/head
Thomas Kaul 10 hours ago
committed by GitHub
parent
commit
df24e5fb9e
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      CHANGELOG.md
  2. 6
      apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html

2
CHANGELOG.md

@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ### Added
- Added support for a copy-to-clipboard functionality in the value component - 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)
- Extended the user detail dialog of the admin control panel’s users section by adding a copy-to-clipboard button for the user id - Extended the user detail dialog of the admin control panel’s users section by adding a copy-to-clipboard button for the user id
### Changed ### Changed

6
apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html

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

Loading…
Cancel
Save