mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 06:23:34 -07:00
lint
This commit is contained in:
parent
1341be03d8
commit
2e9d3dd1b9
1 changed files with 5 additions and 5 deletions
|
@ -65,9 +65,9 @@
|
||||||
>
|
>
|
||||||
<template #prepend>
|
<template #prepend>
|
||||||
<v-tooltip v-if="unitError" location="bottom">
|
<v-tooltip v-if="unitError" location="bottom">
|
||||||
<template #activator="{ props }">
|
<template #activator="{ props: unitTooltipProps }">
|
||||||
<v-icon
|
<v-icon
|
||||||
v-bind="props"
|
v-bind="unitTooltipProps"
|
||||||
class="ml-2 mr-n3"
|
class="ml-2 mr-n3"
|
||||||
color="primary"
|
color="primary"
|
||||||
>
|
>
|
||||||
|
@ -122,9 +122,9 @@
|
||||||
>
|
>
|
||||||
<template #prepend>
|
<template #prepend>
|
||||||
<v-tooltip v-if="foodError" location="bottom">
|
<v-tooltip v-if="foodError" location="bottom">
|
||||||
<template #activator="{ props }">
|
<template #activator="{ props: foodTooltipProps }">
|
||||||
<v-icon
|
<v-icon
|
||||||
v-bind="props"
|
v-bind="foodTooltipProps"
|
||||||
class="ml-2 mr-n3"
|
class="ml-2 mr-n3"
|
||||||
color="primary"
|
color="primary"
|
||||||
>
|
>
|
||||||
|
@ -215,7 +215,7 @@ import type { RecipeIngredient } from "~/lib/api/types/recipe";
|
||||||
// defineModel replaces modelValue prop
|
// defineModel replaces modelValue prop
|
||||||
const model = defineModel<RecipeIngredient>({ required: true });
|
const model = defineModel<RecipeIngredient>({ required: true });
|
||||||
|
|
||||||
const props = defineProps({
|
defineProps({
|
||||||
disableAmount: {
|
disableAmount: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false,
|
default: false,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue