Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonqiu212 authored Sep 9, 2023
2 parents 25744fd + ceb0bcf commit 4587aaa
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,9 @@ export class InstructorSessionsPageComponent extends InstructorSessionModalPageC
const requestList: Observable<FeedbackSession>[] = this.createSessionCopyRequestsFromRowModel(
this.sessionsTableRowModels[result.sessionToCopyRowIndex], result);
if (requestList.length === 1) {
this.copySingleSession(requestList[0], this.modifiedTimestampsModal);
this.copySingleSession(requestList[0].pipe(finalize(() => {
this.isCopySessionLoading = false;
})), this.modifiedTimestampsModal);
}
if (requestList.length > 1) {
forkJoin(requestList).pipe(finalize(() => {
Expand Down

0 comments on commit 4587aaa

Please sign in to comment.