Skip to content

Commit

Permalink
fix(Archive Run): Display first 10 runs immediately
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffreykwan committed Sep 12, 2023
1 parent 2aaef4e commit 83d4924
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ export class TeacherRunListComponent implements OnInit {
this.setRuns(runs);
this.processRuns();
this.highlightNewRunIfNecessary();
this.loaded = true;
});
}

Expand All @@ -79,6 +78,7 @@ export class TeacherRunListComponent implements OnInit {
return teacherRun;
});
this.filteredRuns = this.runs;
this.loaded = true;
}

private subscribeToRuns(): void {
Expand Down

0 comments on commit 83d4924

Please sign in to comment.