X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FGameList.vue;h=5ab61cc3d1908d152bc57c9e497bbe76313056f0;hp=4233a01bb794aa3777f64d2079a5144f6f658243;hb=41c80bb63b85b2696d3925c10784c3d7bb5d2aa3;hpb=dcd68c4108412f45b8ce119ae80ce8f6e296800b diff --git a/client/src/components/GameList.vue b/client/src/components/GameList.vue index 4233a01b..5ab61cc3 100644 --- a/client/src/components/GameList.vue +++ b/client/src/components/GameList.vue @@ -50,7 +50,7 @@ export default { priority++; } } - return Object.assign({}, g, {priority: priority, myTurn: priority==2}); + return Object.assign({}, g, {priority: priority, myTurn: priority==3}); }); return augmentedGames.sort((g1,g2) => { return g2.priority - g1.priority; }); }, @@ -58,8 +58,8 @@ export default { }; -