[CST-4506] Fix issue with submission bitstream edit

This commit is contained in:
Giuseppe Digilio
2022-01-25 10:40:11 +01:00
parent 89c9e9aba3
commit 04c8cb7590
2 changed files with 19 additions and 17 deletions

View File

@@ -176,8 +176,8 @@ export class SubmissionSectionUploadFileComponent implements OnChanges, OnInit {
.getFileData(this.submissionId, this.sectionId, this.fileId).pipe(
filter((bitstream) => isNotUndefined(bitstream)))
.subscribe((bitstream) => {
this.fileData = bitstream;
}
this.fileData = bitstream;
}
)
);
}