Skip to content

Commit

Permalink
fixed logical error
Browse files Browse the repository at this point in the history
  • Loading branch information
dobeybobey committed Oct 24, 2024
1 parent 496078a commit aff36aa
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,14 @@ export class CopySessionModalComponent {
}
else {
validName=true;
this.activeModal.close({
newFeedbackSessionName: this.newFeedbackSessionName,
sessionToCopyCourseId: this.sessionToCopyCourseId,
copyToCourseList: Array.from(this.copyToCourseSet),
});
}
this.activeModal.close({
newFeedbackSessionName: this.newFeedbackSessionName,
sessionToCopyCourseId: this.sessionToCopyCourseId,
copyToCourseList: Array.from(this.copyToCourseSet),
});
}
/**
Expand Down

0 comments on commit aff36aa

Please sign in to comment.