CatalogList.vue: don't display season master catalog property

This commit is contained in:
2020-01-15 13:49:20 -08:00
parent eb57d25b5c
commit 7803deb527

View File

@ -47,15 +47,6 @@
class="scroll-area"
@click:row="selectCatalog"
>
<template v-slot:item.master="{ item }">
<v-tooltip v-if="item.master" top>
<template v-slot:activator="{ on }">
<v-icon small color="red" v-on="on">stars</v-icon>
</template>
<span>Season master</span>
</v-tooltip>
</template>
<template v-slot:item.updated="{ item }">
{{ item.updatedPretty }}
</template>
@ -102,15 +93,6 @@
class="scroll-area"
@click:row="selectCatalog"
>
<template v-slot:item.master="{ item }">
<v-tooltip v-if="item.master" top>
<template v-slot:activator="{ on }">
<v-icon small color="red" v-on="on">stars</v-icon>
</template>
<span>Season master</span>
</v-tooltip>
</template>
<template v-slot:item.updated="{ item }">
{{ item.updatedPretty }}
</template>
@ -143,10 +125,6 @@
</v-toolbar>
<v-divider/>
<table class="details">
<tr v-if="selectedCatalog.master">
<td class="grey--text">Season master</td>
<td><span class="group"><v-icon color="red">stars</v-icon></span></td>
</tr>
<tr>
<td class="grey--text">Season</td>
<td>{{ selectedCatalog.seasonCode }}</td>
@ -230,13 +208,6 @@ export default {
search: '',
interval: null,
myHeaders: [
{
text: '',
align: 'center',
value: 'master',
width: '1%',
class: 'pa-0',
},
{
text: 'Season',
value: 'seasonCode',
@ -262,13 +233,6 @@ export default {
},
],
pubHeaders: [
{
text: '',
align: 'center',
value: 'master',
width: '1%',
class: 'pa-0',
},
{
text: 'Season',
align: 'left',
@ -293,7 +257,7 @@ export default {
{
text: 'Updated',
value: 'updated',
width: '20%',
width: '25%',
class: 'px-2 py-0',
},
{