File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 22 <div class =" container" >
33 <h1 style =" margin : auto " >HacKSU Administrative Meetings</h1 >
44 <br >
5- <div class =" meeting" v-for =" note in notes" :keys =" note.id"
5+ <div class =" meeting" v-for =" note in notes.reverse() " :keys =" note.id"
66 style =" border : 1px solid darkgray ;" >
77 <div style =" display : flex ; flex-direction : column ; width : 100% ;" >
88 <h2 >{{ note.title }}</h2 >
Original file line number Diff line number Diff line change @@ -91,7 +91,8 @@ const groupedEvents = computed(() => {
9191
9292 // reverse the order of events within each group to make them
9393 // forward-chronological within each semester
94- result .forEach (value => value .reverse ());
94+ // result.forEach(value => value.reverse());
95+ // I like reverse chronological order more :-) -Brandon
9596
9697 return result;
9798});
You can’t perform that action at this time.
0 commit comments