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
parent
commit
6ac693dd39
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      CHANGELOG.md
  2. 4
      apps/client/src/app/components/accounts-table/accounts-table.component.ts
  3. 2
      libs/ui/src/lib/activities-table/activities-table.component.ts

7
CHANGELOG.md

@ -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/),
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
### Fixed

4
apps/client/src/app/components/accounts-table/accounts-table.component.ts

@ -48,9 +48,9 @@ export class AccountsTableComponent implements OnChanges, OnDestroy, OnInit {
'account',
'platform',
'transactions',
'currency',
'balance',
'value'
'value',
'currency'
];
if (this.showActions) {

2
libs/ui/src/lib/activities-table/activities-table.component.ts

@ -134,10 +134,10 @@ export class ActivitiesTableComponent implements OnChanges, OnDestroy {
'type',
'symbol',
'quantity',
'currency',
'unitPrice',
'fee',
'value',
'currency',
'account',
'actions'
];

Loading…
Cancel
Save