Browse Source

Bugfix/add missing data source in activities import (#1930)

* Add dataSource

* Update changelog
pull/1933/head
Thomas Kaul 1 year ago
committed by GitHub
parent
commit
6a1fad611c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CHANGELOG.md
  2. 1
      apps/client/src/app/services/import-activities.service.ts

4
CHANGELOG.md

@ -18,6 +18,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Upgraded `class-validator` from version `0.13.1` to `0.14.0` - Upgraded `class-validator` from version `0.13.1` to `0.14.0`
- Upgraded `prisma` from version `4.12.0` to `4.13.0` - Upgraded `prisma` from version `4.12.0` to `4.13.0`
### Fixed
- Added the missing `dataSource` attribute to the activities import
## 1.265.0 - 2023-05-01 ## 1.265.0 - 2023-05-01
### Changed ### Changed

1
apps/client/src/app/services/import-activities.service.ts

@ -138,6 +138,7 @@ export class ImportActivitiesService {
unitPrice, unitPrice,
updateAccountBalance, updateAccountBalance,
currency: SymbolProfile.currency, currency: SymbolProfile.currency,
dataSource: SymbolProfile.dataSource,
date: date.toString(), date: date.toString(),
symbol: SymbolProfile.symbol symbol: SymbolProfile.symbol
}; };

Loading…
Cancel
Save