diff --git a/CHANGELOG.md b/CHANGELOG.md index ef8109aab..0ebbca8a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Changed the navigation to always show the portfolio page +### Fixed + +- Hid the actions from the accounts table in the _Presenter View_ +- Hid the actions from the transactions table in the _Presenter View_ + ## 1.55.0 - 20.09.2021 ### Changed diff --git a/apps/client/src/app/pages/accounts/accounts-page.html b/apps/client/src/app/pages/accounts/accounts-page.html index f4cc36223..b398c6981 100644 --- a/apps/client/src/app/pages/accounts/accounts-page.html +++ b/apps/client/src/app/pages/accounts/accounts-page.html @@ -7,7 +7,7 @@ [baseCurrency]="user?.settings?.baseCurrency" [deviceType]="deviceType" [locale]="user?.settings?.locale" - [showActions]="!hasImpersonationId && hasPermissionToDeleteAccount" + [showActions]="!hasImpersonationId && hasPermissionToDeleteAccount && !user.settings.isRestrictedView" (accountDeleted)="onDeleteAccount($event)" (accountToUpdate)="onUpdateAccount($event)" > @@ -15,7 +15,7 @@