fix: minor fixes
This commit is contained in:
parent
fe1c739ad0
commit
dcb823a378
3 changed files with 5 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<!-- COVER START -->
|
<!-- COVER START -->
|
||||||
<div v-if="$store.state.data.cover !== undefined && $store.state.data.cover !== null" class="mb-3">
|
<div v-if="$store.state.data.cover != null" class="mb-3">
|
||||||
<div
|
<div
|
||||||
class="cover-common cover-container"
|
class="cover-common cover-container"
|
||||||
:style="coverStyle">
|
:style="coverStyle">
|
||||||
|
@ -122,9 +122,7 @@
|
||||||
<v-tooltip bottom v-if="media.contentType.split('/')[0] === 'image'">
|
<v-tooltip bottom v-if="media.contentType.split('/')[0] === 'image'">
|
||||||
<template v-slot:activator="{ on, attrs }">
|
<template v-slot:activator="{ on, attrs }">
|
||||||
<v-btn
|
<v-btn
|
||||||
icon
|
icon color="teal" small
|
||||||
color="teal"
|
|
||||||
small
|
|
||||||
v-bind="attrs"
|
v-bind="attrs"
|
||||||
v-on="on"
|
v-on="on"
|
||||||
@click="chooseAsCover(media)"
|
@click="chooseAsCover(media)"
|
||||||
|
|
|
@ -89,6 +89,7 @@
|
||||||
</v-form>
|
</v-form>
|
||||||
<AvatarEditor
|
<AvatarEditor
|
||||||
ref="avatarEditor"
|
ref="avatarEditor"
|
||||||
|
rounded
|
||||||
:loading="logoLoading"
|
:loading="logoLoading"
|
||||||
@submitted="handleAvatarEditorSubmitted"
|
@submitted="handleAvatarEditorSubmitted"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
Aucun tarifs ajoutée pour le moment
|
Aucun tarifs ajoutée pour le moment
|
||||||
</v-alert>
|
</v-alert>
|
||||||
</div>
|
</div>
|
||||||
<v-row v-else class="justify-center">
|
<v-row v-else class="justify-center align-center">
|
||||||
<v-col
|
<v-col
|
||||||
v-for="pricing in $store.state.data.pricing"
|
v-for="pricing in $store.state.data.pricing"
|
||||||
:key="pricing._id"
|
:key="pricing._id"
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
<v-card
|
<v-card
|
||||||
class="mx-auto pricing-card"
|
class="mx-auto pricing-card"
|
||||||
:class="removeExampleData ? 'disabled' : ''"
|
:class="removeExampleData ? 'disabled' : ''"
|
||||||
max-width="400"
|
max-width="400px"
|
||||||
>
|
>
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
<div v-text="pricing.name" />
|
<div v-text="pricing.name" />
|
||||||
|
|
Loading…
Reference in a new issue