Browse Source
Bugfix/fix alignment of value component on allocation page (#1351)
* Fix alignment
* Update changelog
pull/1353/head
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/portfolio/allocations/allocations-page.html
|
@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
### Fixed |
|
|
### Fixed |
|
|
|
|
|
|
|
|
- Fixed some links in the blog posts |
|
|
- Fixed some links in the blog posts |
|
|
|
|
|
- Fixed the alignment of the value component on the allocations page |
|
|
|
|
|
|
|
|
### Todo |
|
|
### Todo |
|
|
|
|
|
|
|
|
|
@ -18,7 +18,7 @@ |
|
|
>Proportion of Net Worth</mat-card-title |
|
|
>Proportion of Net Worth</mat-card-title |
|
|
> |
|
|
> |
|
|
<gf-value |
|
|
<gf-value |
|
|
class="flex-grow-1 justify-content-end l-2" |
|
|
class="justify-content-end l-2" |
|
|
size="medium" |
|
|
size="medium" |
|
|
[isPercent]="true" |
|
|
[isPercent]="true" |
|
|
[value]="isLoading ? undefined : portfolioDetails?.filteredValueInPercentage" |
|
|
[value]="isLoading ? undefined : portfolioDetails?.filteredValueInPercentage" |
|
|