Browse Source
Feature/add copy-to-clipboard button to user detail dialog (#6641)
* Add copy-to-clipboard button to user id
* Update changelog
pull/4073/merge
Thomas Kaul
9 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
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/user-detail-dialog/user-detail-dialog.html
|
|
|
@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
- 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 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
|
|
|
|
@ -27,7 +27,13 @@ |
|
|
|
<div class="container p-0"> |
|
|
|
<div class="mb-3 row"> |
|
|
|
<div class="col-6 mb-3"> |
|
|
|
<gf-value i18n size="medium" [value]="user?.id">User ID</gf-value> |
|
|
|
<gf-value |
|
|
|
i18n |
|
|
|
size="medium" |
|
|
|
[enableCopyToClipboardButton]="true" |
|
|
|
[value]="user?.id" |
|
|
|
>User ID</gf-value |
|
|
|
> |
|
|
|
</div> |
|
|
|
<div class="col-6 mb-3"> |
|
|
|
<gf-value i18n size="medium" [value]="user?.role">Role</gf-value> |
|
|
|
|