Browse Source

Feature/extend activity cloning by quantity (#2054)

* Allow to clone quantity

* Update changelog
pull/2053/head^2
Thomas Kaul 2 years ago
committed by GitHub
parent
commit
8232b05f62
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      CHANGELOG.md
  2. 1
      apps/client/src/app/pages/portfolio/activities/activities-page.component.ts

6
CHANGELOG.md

@ -5,6 +5,12 @@ 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).
## Changelog
### Changed
- Extended the clone functionality of a transaction by the quantity
## 1.277.0 - 2023-06-07
### Added

1
apps/client/src/app/pages/portfolio/activities/activities-page.component.ts

@ -291,7 +291,6 @@ export class ActivitiesPageComponent implements OnDestroy, OnInit {
date: new Date(),
id: null,
fee: 0,
quantity: null,
type: aActivity?.type ?? 'BUY',
unitPrice: null
},

Loading…
Cancel
Save