Skip to content
This repository was archived by the owner on Jan 29, 2025. It is now read-only.

Commit b113d10

Browse files
committed
order keynotes as well
1 parent 435c6b5 commit b113d10

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/app/landing-page/schedule/schedule.component.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,11 @@ export class ScheduleComponent implements OnInit, OnChanges {
8585
})
8686

8787
tempSchedule.forEach(day => {
88+
day.sessions.Keynote.sort(function(a, b) {
89+
if (a.date <= b.date) return -1;
90+
else return 1;
91+
})
92+
8893
day.sessions.Workshop.all.sort(function(a, b) {
8994
if (a.date < b.date) return -1;
9095
if (a.date > b.date) return 1;

0 commit comments

Comments
 (0)