mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
Fixed switch collection in submission form not working anymore
This commit is contained in:
@@ -168,7 +168,7 @@ export class SubmissionFormCollectionComponent implements OnChanges, OnInit {
|
|||||||
})
|
})
|
||||||
).subscribe((submissionObject: SubmissionObject) => {
|
).subscribe((submissionObject: SubmissionObject) => {
|
||||||
this.selectedCollectionId = event.collection.id;
|
this.selectedCollectionId = event.collection.id;
|
||||||
this.selectedCollectionName$ = observableOf(this.dsoNameService.getName(event.collection));
|
this.selectedCollectionName$ = observableOf(event.collection.name);
|
||||||
this.collectionChange.emit(submissionObject);
|
this.collectionChange.emit(submissionObject);
|
||||||
this.submissionService.changeSubmissionCollection(this.submissionId, event.collection.id);
|
this.submissionService.changeSubmissionCollection(this.submissionId, event.collection.id);
|
||||||
this.processingChange$.next(false);
|
this.processingChange$.next(false);
|
||||||
|
Reference in New Issue
Block a user