Browse Source
Task/move activity actions in account and holding detail dialogs to general availability (#7605)
* Move activity actions to general availability
* Update changelog
pull/7600/head^2
Thomas Kaul
6 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
4 additions and
2 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html
-
apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html
|
|
@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
### Changed |
|
|
### Changed |
|
|
|
|
|
|
|
|
|
|
|
- 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`) |
|
|
|
|
|
|
|
|
|
|
|
@ -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" |
|
|
|
|
|
@ -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" |
|
|
|