Browse Source

Task/improve usability of portfolio summary in presenter view (#6360)

* Improve usability in presenter view

* Update changelog
pull/6361/head
Thomas Kaul 1 week ago
committed by GitHub
parent
commit
25200bfd6d
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 7
      apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html

1
CHANGELOG.md

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- Improved the usability of the portfolio summary tab on the home page in the _Presenter View_
- Refreshed the cryptocurrencies list - Refreshed the cryptocurrencies list
- Improved the language localization for German (`de`) - Improved the language localization for German (`de`)
- Improved the language localization for Spanish (`es`) - Improved the language localization for Spanish (`es`)

7
apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html

@ -184,18 +184,21 @@
[ngClass]="{ [ngClass]="{
'cursor-pointer': 'cursor-pointer':
hasPermissionToUpdateUserSettings && hasPermissionToUpdateUserSettings &&
!user?.settings?.isRestrictedView &&
user?.subscription?.type !== 'Basic' user?.subscription?.type !== 'Basic'
}" }"
(click)=" (click)="
hasPermissionToUpdateUserSettings && hasPermissionToUpdateUserSettings &&
!user?.settings?.isRestrictedView &&
user?.subscription?.type !== 'Basic' && user?.subscription?.type !== 'Basic' &&
onEditEmergencyFund() onEditEmergencyFund()
" "
> >
@if ( @if (
hasPermissionToUpdateUserSettings && hasPermissionToUpdateUserSettings &&
user?.subscription?.type !== 'Basic' && !isLoading &&
!isLoading !user?.settings?.isRestrictedView &&
user?.subscription?.type !== 'Basic'
) { ) {
<ion-icon <ion-icon
class="mr-1 text-muted" class="mr-1 text-muted"

Loading…
Cancel
Save