Skip to content

Commit

Permalink
FIX-12596: student sort by team
Browse files Browse the repository at this point in the history
  • Loading branch information
Gleb Nazarov authored and Gleb Nazarov committed Sep 1, 2024
1 parent 6d4f9f4 commit 46ebb56
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,8 @@ export class ExtensionConfirmModalComponent implements OnInit {
strB = b.sectionName;
break;
case SortBy.TEAM_NAME:
strA = a.sectionName;
strB = b.sectionName;
strA = a.teamName;
strB = b.teamName;
break;
case SortBy.RESPONDENT_NAME:
strA = a.name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -531,8 +531,8 @@ export class InstructorSessionIndividualExtensionPageComponent implements OnInit
strB = b.sectionName;
break;
case SortBy.TEAM_NAME:
strA = a.sectionName;
strB = b.sectionName;
strA = a.teamName;
strB = b.teamName;
break;
case SortBy.RESPONDENT_NAME:
strA = a.name;
Expand Down

0 comments on commit 46ebb56

Please sign in to comment.