X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FGameList.vue;h=8481048dbd56607e7f598c811dee854e7630e225;hb=42c15a75118bfeb3251cea1f65acb01fcd023f01;hp=c7f661ca666407f71cdb36062750d442a6a5def5;hpb=85e5b5c1e6192a134fa69182e8c077605fdb969f;p=vchess.git diff --git a/client/src/components/GameList.vue b/client/src/components/GameList.vue index c7f661ca..8481048d 100644 --- a/client/src/components/GameList.vue +++ b/client/src/components/GameList.vue @@ -1,15 +1,16 @@ @@ -18,9 +19,6 @@ export default { name: "my-game-list", props: ["games"], computed: { - showVariant: function() { - return this.games.length > 0 && !!this.games[0].vname; - }, showResult: function() { return this.games.length > 0 && this.games[0].score != "*"; },