Small fixes
[vchess.git] / client / src / components / GameList.vue
index 0d2fbf4..d0ea2f0 100644 (file)
@@ -3,10 +3,10 @@ div
   table
     thead
       tr
-        th Variant
-        th White
-        th Black
-        th Time control
+        th {{ st.tr["Variant"] }}
+        th {{ st.tr["White"] }}
+        th {{ st.tr["Black"] }}
+        th {{ st.tr["Time control"] }}
         th(v-if="showResult") Result
     tbody
       tr(v-for="g in sortedGames" @click="$emit('show-game',g)"
@@ -46,6 +46,7 @@ export default {
                 || g.players[0].sid == this.st.user.sid
               ? "w"
               : "b";
+            // I play in this game, so g.fen will be defined
             if (!!g.fen.match(" " + myColor + " "))
               priority++;
           }