Browse Source
Feature/improve position of currency column (#685)
* Move position of currency column
* Update changelog
pull/686/head
Thomas Kaul
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
10 additions and
3 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/accounts-table/accounts-table.component.ts
-
libs/ui/src/lib/activities-table/activities-table.component.ts
|
@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. |
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
|
|
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
|
|
|
|
- Improved the position of the currency column in the accounts table |
|
|
|
|
|
- Improved the position of the currency column in the activities table |
|
|
|
|
|
|
|
|
## 1.112.1 - 06.02.2022 |
|
|
## 1.112.1 - 06.02.2022 |
|
|
|
|
|
|
|
|
### Fixed |
|
|
### Fixed |
|
|
|
@ -48,9 +48,9 @@ export class AccountsTableComponent implements OnChanges, OnDestroy, OnInit { |
|
|
'account', |
|
|
'account', |
|
|
'platform', |
|
|
'platform', |
|
|
'transactions', |
|
|
'transactions', |
|
|
'currency', |
|
|
|
|
|
'balance', |
|
|
'balance', |
|
|
'value' |
|
|
'value', |
|
|
|
|
|
'currency' |
|
|
]; |
|
|
]; |
|
|
|
|
|
|
|
|
if (this.showActions) { |
|
|
if (this.showActions) { |
|
|
|
@ -134,10 +134,10 @@ export class ActivitiesTableComponent implements OnChanges, OnDestroy { |
|
|
'type', |
|
|
'type', |
|
|
'symbol', |
|
|
'symbol', |
|
|
'quantity', |
|
|
'quantity', |
|
|
'currency', |
|
|
|
|
|
'unitPrice', |
|
|
'unitPrice', |
|
|
'fee', |
|
|
'fee', |
|
|
'value', |
|
|
'value', |
|
|
|
|
|
'currency', |
|
|
'account', |
|
|
'account', |
|
|
'actions' |
|
|
'actions' |
|
|
]; |
|
|
]; |
|
|