From 56068e9ac93a784528e955a4d95816dd2b93b588 Mon Sep 17 00:00:00 2001 From: Maxime Moraine Date: Thu, 11 Feb 2021 14:19:32 +0100 Subject: [PATCH] =?UTF-8?q?correction=20param=C3=A8tres=20colonnes=20objet?= =?UTF-8?q?s=20magiques?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/.vuepress/theme/layouts/MagicItemsLayout.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/.vuepress/theme/layouts/MagicItemsLayout.vue b/docs/.vuepress/theme/layouts/MagicItemsLayout.vue index fbb51cb..98d0f84 100644 --- a/docs/.vuepress/theme/layouts/MagicItemsLayout.vue +++ b/docs/.vuepress/theme/layouts/MagicItemsLayout.vue @@ -119,13 +119,13 @@ export default { { text: "", align: 'center', sortable: false, value: 'isInTreasureChest' }, { text: "Nom", align: 'start', sortable: true, value: 'title' }, ] - if (this.showColumn.school && this.$vuetify.breakpoint.mdAndUp) { + if (this.showColumn.type && this.$vuetify.breakpoint.mdAndUp) { headers.push({ text: "Type", align: 'start', sortable: false, value: 'frontmatter.type' }) } - if (this.showColumn.castingTime && this.$vuetify.breakpoint.mdAndUp) { + if (this.showColumn.rarity && this.$vuetify.breakpoint.mdAndUp) { headers.push({ text: "Rareté", align: 'start', sortable: false, value: 'frontmatter.rarity' }) } - if (this.showColumn.duration && this.$vuetify.breakpoint.mdAndUp) { + if (this.showColumn.attunement && this.$vuetify.breakpoint.mdAndUp) { headers.push({ text: "Harmonisation", align: 'start', sortable: false, value: 'frontmatter.attunement' }) } return headers