Skip to content

Commit

Permalink
Fixed switch collection in submission form not working anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrevryghem committed May 19, 2023
1 parent 2030b29 commit 11a86c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,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);
Expand Down

0 comments on commit 11a86c3

Please sign in to comment.