Browse Source
Feature/move holdings table into holdings section on public page (#5508)
* Move holdings table into holdings section on public page
* Update changelog
pull/5518/head
Germán Martín
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
9 additions and
12 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/public/public-page.html
|
|
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Moved the holdings table into the holdings section on the public page |
|
|
|
- Refactored the login with access token dialog component to standalone |
|
|
|
|
|
|
|
## 2.198.0 - 2025-09-11 |
|
|
|
|
|
@ -77,6 +77,14 @@ |
|
|
|
[keys]="['symbol']" |
|
|
|
[showLabels]="deviceType !== 'mobile'" |
|
|
|
/> |
|
|
|
<gf-holdings-table |
|
|
|
[deviceType]="deviceType" |
|
|
|
[hasPermissionToOpenDetails]="false" |
|
|
|
[hasPermissionToShowQuantities]="false" |
|
|
|
[hasPermissionToShowValues]="false" |
|
|
|
[holdings]="holdings" |
|
|
|
[pageSize]="7" |
|
|
|
/> |
|
|
|
</mat-card-content> |
|
|
|
</mat-card> |
|
|
|
</div> |
|
|
@ -195,18 +203,6 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
} |
|
|
|
<div class="row"> |
|
|
|
<div class="col-lg"> |
|
|
|
<gf-holdings-table |
|
|
|
[deviceType]="deviceType" |
|
|
|
[hasPermissionToOpenDetails]="false" |
|
|
|
[hasPermissionToShowQuantities]="false" |
|
|
|
[hasPermissionToShowValues]="false" |
|
|
|
[holdings]="holdings" |
|
|
|
[pageSize]="7" |
|
|
|
/> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="row my-5"> |
|
|
|
<div class="col-md-10 offset-md-1"> |
|
|
|
<h2 class="h4 mb-1 text-center" i18n> |
|
|
|