mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
807 B
23 lines
807 B
<div class="container pb-3 px-3">
|
|
<h1 class="d-none d-sm-block h3 mb-4 text-center" i18n>Summary</h1>
|
|
<div class="row">
|
|
<div class="col-xs-12 col-md-8 offset-md-2">
|
|
<mat-card appearance="outlined">
|
|
<mat-card-content>
|
|
<gf-portfolio-summary
|
|
[baseCurrency]="user?.settings?.baseCurrency"
|
|
[hasPermissionToUpdateUserSettings]="
|
|
!hasImpersonationId && hasPermissionToUpdateUserSettings
|
|
"
|
|
[isLoading]="isLoading"
|
|
[language]="user?.settings?.language"
|
|
[locale]="user?.settings?.locale"
|
|
[summary]="summary"
|
|
[user]="user"
|
|
(emergencyFundChanged)="onChangeEmergencyFund($event)"
|
|
/>
|
|
</mat-card-content>
|
|
</mat-card>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|