diff --git a/CHANGELOG.md b/CHANGELOG.md index 97be4a899..c9d3a91f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Improved the wording of the _X-ray_ page to use a neutral form +- Moved the support to clone an activity in the account detail dialog from experimental to general availability +- Moved the support to clone an activity in the holding detail dialog from experimental to general availability +- Moved the support to edit an activity in the account detail dialog from experimental to general availability +- Moved the support to edit an activity in the holding detail dialog from experimental to general availability - Removed the deprecated `isDraft` attribute of the activity in favor of the _Draft_ tag - Improved the language localization for German (`de`) diff --git a/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html b/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html index cb3246c00..1ca0a27dc 100644 --- a/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html +++ b/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html @@ -160,7 +160,6 @@ [showActions]=" data.hasPermissionToCreateActivity && !data.impersonationId && - user?.settings?.isExperimentalFeatures && !user?.settings?.isRestrictedView " [sortColumn]="sortColumn" diff --git a/apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.scss b/apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.scss index e02c91e3d..4dc8cf6b5 100644 --- a/apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.scss +++ b/apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.scss @@ -1,6 +1,15 @@ +@use '@angular/material' as mat; + :host { display: block; + @include mat.form-field-overrides( + ( + container-height: 2rem, + container-vertical-padding: 0.33rem + ) + ); + .chart-container { aspect-ratio: 16 / 9; diff --git a/apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html b/apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html index c9528a34d..e6884c003 100644 --- a/apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html +++ b/apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -392,7 +392,6 @@ [showActions]=" data.hasPermissionToCreateActivity && !data.impersonationId && - user?.settings?.isExperimentalFeatures && !user?.settings?.isRestrictedView " [showNameColumn]="false"