mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-19 13:19:41 +02:00
fix linter issues
This commit is contained in:
parent
a1b1b529a3
commit
3ed197a843
21 changed files with 58 additions and 33 deletions
|
@ -21,7 +21,7 @@
|
|||
<v-list v-if="showViewer" dense class="mt-0 pt-0">
|
||||
<v-list-item v-for="(item, key, index) in labels" :key="index">
|
||||
<v-list-item-content>
|
||||
<v-list-item-title class="pl-4 text-subtitle-1 flex row ">
|
||||
<v-list-item-title class="pl-4 text-subtitle-1 flex row">
|
||||
<div>{{ item.label }}</div>
|
||||
<div class="ml-auto mr-1">{{ value[key] }}</div>
|
||||
<div>{{ item.suffix }}</div>
|
||||
|
@ -36,7 +36,10 @@
|
|||
<script>
|
||||
export default {
|
||||
props: {
|
||||
value: {},
|
||||
value: {
|
||||
type: Object,
|
||||
required: true,
|
||||
},
|
||||
edit: {
|
||||
type: Boolean,
|
||||
default: true,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue