X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FChallengeList.vue;h=ed490671db3ce1a4c028f6d84784edc826c73637;hp=92c42f7c30d334eac44c929f7ca648d4b6e9b80e;hb=910d631b73cad5ffef1b4461157b704e7e7057d8;hpb=6808d7a16ec1e761c6a2dffec2281c96953e4d89 diff --git a/client/src/components/ChallengeList.vue b/client/src/components/ChallengeList.vue index 92c42f7c..ed490671 100644 --- a/client/src/components/ChallengeList.vue +++ b/client/src/components/ChallengeList.vue @@ -7,7 +7,11 @@ div th {{ st.tr["From"] }} th {{ st.tr["Cadence"] }} tbody - tr(v-for="c in sortedChallenges" :class="{toyou:c.priority==1,fromyou:c.priority==2}" @click="$emit('click-challenge',c)") + tr( + v-for="c in sortedChallenges" + :class="{toyou:c.priority==1,fromyou:c.priority==2}" + @click="$emit('click-challenge',c)" + ) td {{ c.vname }} td {{ c.from.name || "@nonymous" }} td {{ c.cadence }} @@ -47,7 +51,7 @@ export default {