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>
|
||||
<div>
|
||||
<!-- 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
|
||||
class="cover-common cover-container"
|
||||
:style="coverStyle">
|
||||
|
@ -122,9 +122,7 @@
|
|||
<v-tooltip bottom v-if="media.contentType.split('/')[0] === 'image'">
|
||||
<template v-slot:activator="{ on, attrs }">
|
||||
<v-btn
|
||||
icon
|
||||
color="teal"
|
||||
small
|
||||
icon color="teal" small
|
||||
v-bind="attrs"
|
||||
v-on="on"
|
||||
@click="chooseAsCover(media)"
|
||||
|
|
|
@ -89,6 +89,7 @@
|
|||
</v-form>
|
||||
<AvatarEditor
|
||||
ref="avatarEditor"
|
||||
rounded
|
||||
:loading="logoLoading"
|
||||
@submitted="handleAvatarEditorSubmitted"
|
||||
/>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
Aucun tarifs ajoutée pour le moment
|
||||
</v-alert>
|
||||
</div>
|
||||
<v-row v-else class="justify-center">
|
||||
<v-row v-else class="justify-center align-center">
|
||||
<v-col
|
||||
v-for="pricing in $store.state.data.pricing"
|
||||
:key="pricing._id"
|
||||
|
@ -24,7 +24,7 @@
|
|||
<v-card
|
||||
class="mx-auto pricing-card"
|
||||
:class="removeExampleData ? 'disabled' : ''"
|
||||
max-width="400"
|
||||
max-width="400px"
|
||||
>
|
||||
<v-card-text>
|
||||
<div v-text="pricing.name" />
|
||||
|
|
Loading…
Reference in a new issue