We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 679d1d5 commit 91cfdf8Copy full SHA for 91cfdf8
frontend/src/components/match/GameEvents.vue
@@ -40,7 +40,9 @@ const gameEventItems = computed(() => {
40
items.push(item)
41
}
42
43
- items.sort((a, b) => a.timestamp - b.timestamp)
+ // Sort descending by timestamp: most recent first
44
+ // This fits the order of the protocol list and helps when many items are present
45
+ items.sort((a, b) => b.timestamp - a.timestamp)
46
return items
47
})
48
0 commit comments