X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FVariantList.vue;h=5f230107903820e76b90717fd89acfd42d9f8da6;hp=e5d02856f5ade3bdcb2de8e47ecca8cabf5ba1c1;hb=eaa5ad3e93b761fefb16b32071be0b439761f843;hpb=b0116a67818668f55cd2a3b3a323b2c91b5bc332 diff --git a/client/src/views/VariantList.vue b/client/src/views/VariantList.vue index e5d02856..5f230107 100644 --- a/client/src/views/VariantList.vue +++ b/client/src/views/VariantList.vue @@ -12,7 +12,7 @@ main :class="getVclasses(filteredVariants, idx)" ) router-link(:to="getLink(v.name)") - h4.boxtitle.text-center {{ v.name }} + h4.boxtitle.text-center {{ v.display }} p.description.text-center {{ st.tr[v.desc] }} @@ -41,7 +41,8 @@ export default { .map(v => { return { name: v.name, - desc: v.description + desc: v.description, + display: v.display }; }) .sort((a, b) => {