Browse Source
Task/improve account name display in activities table (#7025)
* Do not wrap account name
* Update changelog
pull/7027/head
Thomas Kaul
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
4 additions and
1 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/activities-table/activities-table.component.html
|
|
|
@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Improved the dynamic numerical precision for various values in the account detail dialog on mobile |
|
|
|
- Improved the dynamic numerical precision for various values in the holding detail dialog on mobile |
|
|
|
- Improved the account name display in the activities table |
|
|
|
- Optimized the endpoint `GET api/v1/portfolio/holding/:dataSource/:symbol` by improving the processing of the historical market data |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
@ -347,7 +347,9 @@ |
|
|
|
[url]="element.account?.platform?.url" |
|
|
|
/> |
|
|
|
} |
|
|
|
<span class="d-none d-lg-block">{{ element.account?.name }}</span> |
|
|
|
<span class="d-none d-lg-block text-nowrap">{{ |
|
|
|
element.account?.name |
|
|
|
}}</span> |
|
|
|
</div> |
|
|
|
</td> |
|
|
|
</ng-container> |
|
|
|
|