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
parent
commit
20cb189bae
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 4
      libs/ui/src/lib/activities-table/activities-table.component.html

1
CHANGELOG.md

@ -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 account detail dialog on mobile
- Improved the dynamic numerical precision for various values in the holding 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 - Optimized the endpoint `GET api/v1/portfolio/holding/:dataSource/:symbol` by improving the processing of the historical market data
### Fixed ### Fixed

4
libs/ui/src/lib/activities-table/activities-table.component.html

@ -347,7 +347,9 @@
[url]="element.account?.platform?.url" [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> </div>
</td> </td>
</ng-container> </ng-container>

Loading…
Cancel
Save