From 8ac21f98f7bcaaf3240e58cd2964c4aa0f69e303 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Tue, 15 Oct 2024 11:19:13 +0200 Subject: Fix sorting of recently finished games. --- views/games_active.pug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'views/games_active.pug') diff --git a/views/games_active.pug b/views/games_active.pug index f8f4111..7da3b26 100644 --- a/views/games_active.pug +++ b/views/games_active.pug @@ -6,7 +6,7 @@ - let solo_games = games.filter(game => game.status === 1 && !game.is_opposed) - let finished_games = games.filter(game => game.status === 2) - move_games.sort((a,b)=> a.mtime < b.mtime ? -1 : a.mtime > b.mtime ? 1 : 0) -- finished_games.sort((a,b)=> a.mtime < b.mtime ? -1 : a.mtime > b.mtime ? 1 : 0) +- finished_games.sort((b,a)=> a.mtime < b.mtime ? -1 : a.mtime > b.mtime ? 1 : 0) doctype html html head -- cgit v1.2.3