CatalogList.vue: don't display season master catalog property
This commit is contained in:
@ -47,15 +47,6 @@
|
|||||||
class="scroll-area"
|
class="scroll-area"
|
||||||
@click:row="selectCatalog"
|
@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 }">
|
<template v-slot:item.updated="{ item }">
|
||||||
{{ item.updatedPretty }}
|
{{ item.updatedPretty }}
|
||||||
</template>
|
</template>
|
||||||
@ -102,15 +93,6 @@
|
|||||||
class="scroll-area"
|
class="scroll-area"
|
||||||
@click:row="selectCatalog"
|
@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 }">
|
<template v-slot:item.updated="{ item }">
|
||||||
{{ item.updatedPretty }}
|
{{ item.updatedPretty }}
|
||||||
</template>
|
</template>
|
||||||
@ -143,10 +125,6 @@
|
|||||||
</v-toolbar>
|
</v-toolbar>
|
||||||
<v-divider/>
|
<v-divider/>
|
||||||
<table class="details">
|
<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>
|
<tr>
|
||||||
<td class="grey--text">Season</td>
|
<td class="grey--text">Season</td>
|
||||||
<td>{{ selectedCatalog.seasonCode }}</td>
|
<td>{{ selectedCatalog.seasonCode }}</td>
|
||||||
@ -230,13 +208,6 @@ export default {
|
|||||||
search: '',
|
search: '',
|
||||||
interval: null,
|
interval: null,
|
||||||
myHeaders: [
|
myHeaders: [
|
||||||
{
|
|
||||||
text: '',
|
|
||||||
align: 'center',
|
|
||||||
value: 'master',
|
|
||||||
width: '1%',
|
|
||||||
class: 'pa-0',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: 'Season',
|
text: 'Season',
|
||||||
value: 'seasonCode',
|
value: 'seasonCode',
|
||||||
@ -262,13 +233,6 @@ export default {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
pubHeaders: [
|
pubHeaders: [
|
||||||
{
|
|
||||||
text: '',
|
|
||||||
align: 'center',
|
|
||||||
value: 'master',
|
|
||||||
width: '1%',
|
|
||||||
class: 'pa-0',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: 'Season',
|
text: 'Season',
|
||||||
align: 'left',
|
align: 'left',
|
||||||
@ -293,7 +257,7 @@ export default {
|
|||||||
{
|
{
|
||||||
text: 'Updated',
|
text: 'Updated',
|
||||||
value: 'updated',
|
value: 'updated',
|
||||||
width: '20%',
|
width: '25%',
|
||||||
class: 'px-2 py-0',
|
class: 'px-2 py-0',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user