Merge branch 'retrieve-name-with-dsonameservice-7.4' into retrieve-name-with-dsonameservice-main

This commit is contained in:
Alexandre Vryghem
2023-05-19 14:59:40 +02:00

View File

@@ -174,7 +174,7 @@ export class SubmissionFormCollectionComponent implements OnChanges, OnInit {
})
).subscribe((submissionObject: SubmissionObject) => {
this.selectedCollectionId = event.collection.id;
this.selectedCollectionName$ = observableOf(this.dsoNameService.getName(event.collection));
this.selectedCollectionName$ = observableOf(event.collection.name);
this.collectionChange.emit(submissionObject);
this.submissionService.changeSubmissionCollection(this.submissionId, event.collection.id);
this.processingChange$.next(false);