Browse Source

Merge branch 'main' into task/improve-wording-of-x-ray-page-to-use-neutral-form

pull/7600/head
Thomas Kaul 3 weeks ago
committed by GitHub
parent
commit
3d2daf4c56
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 1
      apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html
  3. 9
      apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.scss
  4. 1
      apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html

4
CHANGELOG.md

@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- Improved the wording of the _X-ray_ page to use a neutral form - 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 - Removed the deprecated `isDraft` attribute of the activity in favor of the _Draft_ tag
- Improved the language localization for German (`de`) - Improved the language localization for German (`de`)

1
apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html

@ -160,7 +160,6 @@
[showActions]=" [showActions]="
data.hasPermissionToCreateActivity && data.hasPermissionToCreateActivity &&
!data.impersonationId && !data.impersonationId &&
user?.settings?.isExperimentalFeatures &&
!user?.settings?.isRestrictedView !user?.settings?.isRestrictedView
" "
[sortColumn]="sortColumn" [sortColumn]="sortColumn"

9
apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.scss

@ -1,6 +1,15 @@
@use '@angular/material' as mat;
:host { :host {
display: block; display: block;
@include mat.form-field-overrides(
(
container-height: 2rem,
container-vertical-padding: 0.33rem
)
);
.chart-container { .chart-container {
aspect-ratio: 16 / 9; aspect-ratio: 16 / 9;

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

@ -392,7 +392,6 @@
[showActions]=" [showActions]="
data.hasPermissionToCreateActivity && data.hasPermissionToCreateActivity &&
!data.impersonationId && !data.impersonationId &&
user?.settings?.isExperimentalFeatures &&
!user?.settings?.isRestrictedView !user?.settings?.isRestrictedView
" "
[showNameColumn]="false" [showNameColumn]="false"

Loading…
Cancel
Save