Unsubscribe subscriptions

This commit is contained in:
Giuseppe Digilio
2019-02-18 16:50:43 +01:00
parent 18eaef3c2b
commit 3ba018cd33
2 changed files with 12 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
import { Component, Input, OnChanges } from '@angular/core';
import { TranslateService } from '@ngx-translate/core';
import { Observable, of as observableOf } from 'rxjs';
import { Observable, of as observableOf, Subscription } from 'rxjs';
import { first } from 'rxjs/operators';
import { SectionsService } from '../../sections/sections.service';
@@ -33,11 +33,13 @@ export class SubmissionUploadFilesComponent implements OnChanges {
private uploadEnabled: Observable<boolean> = observableOf(false);
public onBeforeUpload = () => {
this.operationsService.jsonPatchByResourceType(
const sub: Subscription = this.operationsService.jsonPatchByResourceType(
this.submissionService.getSubmissionObjectLinkName(),
this.submissionId,
'sections')
.subscribe();
this.subs.push(sub);
return sub;
};
constructor(private notificationsService: NotificationsService,