mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-10-29 12:44:20 +00:00
correction paramètres colonnes objets magiques
This commit is contained in:
parent
f7750b5034
commit
56068e9ac9
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue