mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-24 19:25:13 -05:00
feat: Replace number inputs with new v-number-input compontent (#6767)
This commit is contained in:
@@ -134,18 +134,22 @@
|
||||
<v-card>
|
||||
<v-card-text>
|
||||
<div>
|
||||
<v-text-field
|
||||
<v-number-input
|
||||
v-model="settings.maxMissingFoods"
|
||||
type="number"
|
||||
:precision="null"
|
||||
:min="0"
|
||||
control-variant="stacked"
|
||||
inset
|
||||
hide-details
|
||||
hide-spin-buttons
|
||||
:label="$t('recipe-finder.max-missing-ingredients')"
|
||||
/>
|
||||
<v-text-field
|
||||
<v-number-input
|
||||
v-model="settings.maxMissingTools"
|
||||
type="number"
|
||||
:precision="null"
|
||||
:min="0"
|
||||
control-variant="stacked"
|
||||
inset
|
||||
hide-details
|
||||
hide-spin-buttons
|
||||
:label="$t('recipe-finder.max-missing-tools')"
|
||||
class="mt-4"
|
||||
/>
|
||||
|
||||
@@ -30,9 +30,11 @@
|
||||
/>
|
||||
|
||||
<v-card-text>
|
||||
<v-text-field
|
||||
<v-number-input
|
||||
v-model="numberOfDays"
|
||||
type="number"
|
||||
:min="1"
|
||||
control-variant="stacked"
|
||||
inset
|
||||
:label="$t('meal-plan.numberOfDays-label')"
|
||||
:hint="$t('meal-plan.numberOfDays-hint')"
|
||||
persistent-hint
|
||||
|
||||
Reference in New Issue
Block a user