|
@ -151,10 +151,10 @@ export class AccountsPageComponent implements OnDestroy, OnInit { |
|
|
comment: aAccount.comment, |
|
|
comment: aAccount.comment, |
|
|
currency: aAccount.currency, |
|
|
currency: aAccount.currency, |
|
|
id: aAccount.id, |
|
|
id: aAccount.id, |
|
|
isExcluded: !(aAccount.isExcluded), |
|
|
isExcluded: !aAccount.isExcluded, |
|
|
name: aAccount.name, |
|
|
name: aAccount.name, |
|
|
platformId: aAccount.platformId |
|
|
platformId: aAccount.platformId |
|
|
} |
|
|
}; |
|
|
this.dataService |
|
|
this.dataService |
|
|
.putAccount(account) |
|
|
.putAccount(account) |
|
|
.pipe(takeUntil(this.unsubscribeSubject)) |
|
|
.pipe(takeUntil(this.unsubscribeSubject)) |
|
|