Browse Source
Feature/add copy-to-clipboard button to version of admin overview (#6670)
* Add copy-to-clipboard button to version
* Update changelog
pull/6690/head
Thomas Kaul
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
5 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/admin-overview/admin-overview.html
|
|
|
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
### Added |
|
|
|
|
|
|
|
- Added support for filtering by activity type on the activities page (experimental) |
|
|
|
- Extended the admin control panel by adding a copy-to-clipboard button for the application version |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
|
|
|
|
@ -6,7 +6,10 @@ |
|
|
|
<div class="d-flex my-3"> |
|
|
|
<div class="w-50" i18n>Version</div> |
|
|
|
<div class="w-50"> |
|
|
|
<gf-value [value]="version" /> |
|
|
|
<gf-value |
|
|
|
[enableCopyToClipboardButton]="true" |
|
|
|
[value]="version" |
|
|
|
/> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="d-flex my-3"> |
|
|
|
|