Browse Source

updated the changes in the client file

pull/5709/head
tanbirali 4 weeks ago
parent
commit
ebf31c5739
  1. 6
      apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.component.ts

6
apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.component.ts

@ -261,6 +261,7 @@ export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit {
.pipe(takeUntil(this.unsubscribeSubject)) .pipe(takeUntil(this.unsubscribeSubject))
.subscribe( .subscribe(
({ ({
activitiesCount,
averagePrice, averagePrice,
dataProviderInfo, dataProviderInfo,
dividendInBaseCurrency, dividendInBaseCurrency,
@ -279,7 +280,6 @@ export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit {
quantity, quantity,
SymbolProfile, SymbolProfile,
tags, tags,
transactionCount,
value value
}) => { }) => {
this.averagePrice = averagePrice; this.averagePrice = averagePrice;
@ -429,8 +429,8 @@ export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit {
this.activityForm.setValue({ tags: this.tags }, { emitEvent: false }); this.activityForm.setValue({ tags: this.tags }, { emitEvent: false });
this.transactionCount = transactionCount; this.transactionCount = activitiesCount;
this.totalItems = transactionCount; this.totalItems = activitiesCount;
this.value = value; this.value = value;
if (SymbolProfile?.assetClass) { if (SymbolProfile?.assetClass) {

Loading…
Cancel
Save