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
parent e29f7f8976
commit 6ac693dd39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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'
]; ];

Loading…
Cancel
Save