Skip to content

Commit

Permalink
Merge branch 'master' into feat/refactor-extension-confirm-modal
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonqiu212 authored Sep 11, 2023
2 parents 9c7277c + ceb0bcf commit 3276eee
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 3276eee

Please sign in to comment.