Browse Source
Feature/restructure allocations page (#294)
* Restructure allocations page
* Update changelog
pull/296/head
Thomas Kaul
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
15 additions and
8 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/portfolio/allocations/allocations-page.html
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
## Unreleased |
|
|
## Unreleased |
|
|
|
|
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
|
|
|
|
- Restructured the allocations page |
|
|
|
|
|
|
|
|
### Fixed |
|
|
### Fixed |
|
|
|
|
|
|
|
|
- Fixed an issue with the performance in the portfolio summary tab on the home page (impersonation mode) |
|
|
- Fixed an issue with the performance in the portfolio summary tab on the home page (impersonation mode) |
|
|
|
@ -1,14 +1,7 @@ |
|
|
<div class="container"> |
|
|
<div class="container"> |
|
|
<div class="mb-5 row"> |
|
|
<div class="row"> |
|
|
<div class="col"> |
|
|
<div class="col"> |
|
|
<h3 class="d-flex justify-content-center mb-3" i18n>Allocations</h3> |
|
|
<h3 class="d-flex justify-content-center mb-3" i18n>Allocations</h3> |
|
|
<gf-positions-table |
|
|
|
|
|
class="mb-4" |
|
|
|
|
|
[baseCurrency]="user?.settings?.baseCurrency" |
|
|
|
|
|
[deviceType]="deviceType" |
|
|
|
|
|
[locale]="user?.settings?.locale" |
|
|
|
|
|
[positions]="positionsArray" |
|
|
|
|
|
></gf-positions-table> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
<div class="proportion-charts row"> |
|
|
<div class="proportion-charts row"> |
|
@ -168,4 +161,14 @@ |
|
|
</mat-card> |
|
|
</mat-card> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="row"> |
|
|
|
|
|
<div class="col-lg"> |
|
|
|
|
|
<gf-positions-table |
|
|
|
|
|
[baseCurrency]="user?.settings?.baseCurrency" |
|
|
|
|
|
[deviceType]="deviceType" |
|
|
|
|
|
[locale]="user?.settings?.locale" |
|
|
|
|
|
[positions]="positionsArray" |
|
|
|
|
|
></gf-positions-table> |
|
|
|
|
|
</div> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|