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
parent
commit
56c4626bbd
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 5
      apps/client/src/app/components/admin-overview/admin-overview.html

1
CHANGELOG.md

@ -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

5
apps/client/src/app/components/admin-overview/admin-overview.html

@ -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">

Loading…
Cancel
Save