X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FGameList.vue;h=a8c0dab664556e8f1811560756a21d2d6b3af645;hb=902378e6276422d38b45f7d79282c2462f1124b1;hp=d81a1de7036b9c9c5328da7fc3441be216d6ac91;hpb=5b18515f0b7dbfab8a2770d9b0fc7aace09267dc;p=vchess.git diff --git a/client/src/components/GameList.vue b/client/src/components/GameList.vue index d81a1de7..a8c0dab6 100644 --- a/client/src/components/GameList.vue +++ b/client/src/components/GameList.vue @@ -13,7 +13,7 @@ div @click="$emit('show-game',g)" :class="{'my-turn': !!g.myTurn}" ) - td {{ g.vname }} + td {{ g.vname + (g.options.abridged || '') }} td {{ player_s(g) }} td(v-if="showCadence") {{ g.cadence }} td( @@ -115,6 +115,8 @@ export default { }, deleteGame: function(game, e) { if ( + // Import ? + (typeof game.id == "string" && game.id.charAt(0) == 'i') || // My game ? game.players.some(p => p.sid == this.st.user.sid || p.id == this.st.user.id