Browse Source

Feature/support bonds in import dividend dialog (#3775)

* Support bonds

* Update changelog
pull/3768/head^2
Thomas Kaul 3 weeks ago
committed by GitHub
parent
commit
df9a0ec35a
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 4
      apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts

1
CHANGELOG.md

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ### Added
- Added support for bonds in the import dividends dialog
- Added the current market price column to the historical market data table of the admin control - Added the current market price column to the historical market data table of the admin control
- Introduced filters (`dataSource` and `symbol`) in the accounts endpoint - Introduced filters (`dataSource` and `symbol`) in the accounts endpoint

4
apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts

@ -93,6 +93,10 @@ export class ImportActivitiesDialog implements OnDestroy {
{ {
id: AssetClass.EQUITY, id: AssetClass.EQUITY,
type: 'ASSET_CLASS' type: 'ASSET_CLASS'
},
{
id: AssetClass.FIXED_INCOME,
type: 'ASSET_CLASS'
} }
], ],
range: 'max' range: 'max'

Loading…
Cancel
Save