X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FChallengeList.vue;h=095c09666740fd1821fcbc5896f058aff08a9cf8;hb=602d6befd30793111d3fda6e733f73e08d8b7a30;hp=890ec1d9fa037851f922878fe5bfc2c73fd39963;hpb=4f8871051c030acd51172b73cd20aedce687c2a8;p=vchess.git diff --git a/client/src/components/ChallengeList.vue b/client/src/components/ChallengeList.vue index 890ec1d9..095c0966 100644 --- a/client/src/components/ChallengeList.vue +++ b/client/src/components/ChallengeList.vue @@ -3,10 +3,10 @@ div table thead tr - th Variant - th From - th To - th Cadence + th {{ st.tr["Variant"] }} + th {{ st.tr["From"] }} + th {{ st.tr["To"] }} + th {{ st.tr["Time control"] }} tbody tr(v-for="c in sortedChallenges" @click="$emit('click-challenge',c)") td(data-label="Variant") {{ c.vname }} @@ -20,7 +20,7 @@ import { store } from "@/store"; export default { name: "my-challenge-list", - props: ["challenges"], + props: ["challenges"], data: function() { return { st: store.state,