'update'
[vchess.git] / client / src / components / ChallengeList.vue
index fd2a901..bffda1a 100644 (file)
@@ -6,18 +6,17 @@ div
         th {{ st.tr["Variant"] }}
         th {{ st.tr["From"] }}
         th {{ st.tr["To"] }}
-        th {{ st.tr["Time control"] }}
+        th {{ st.tr["Cadence"] }}
     tbody
       tr(v-for="c in sortedChallenges" @click="$emit('click-challenge',c)")
         td(data-label="Variant") {{ c.vname }}
         td(data-label="From") {{ c.from.name || "@nonymous" }}
         td(data-label="To") {{ c.to }}
-        td(data-label="Cadence") {{ c.timeControl }}
+        td(data-label="Cadence") {{ c.cadence }}
 </template>
 
 <script>
 import { store } from "@/store";
-
 export default {
   name: "my-challenge-list",
   props: ["challenges"],