mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-25 03:35:11 -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"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user