mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 22:43:34 -07:00
auto grow size
This commit is contained in:
parent
562e344bd5
commit
e4fc908218
1 changed files with 7 additions and 3 deletions
|
@ -41,21 +41,23 @@
|
||||||
>
|
>
|
||||||
</v-text-field>
|
</v-text-field>
|
||||||
<v-textarea
|
<v-textarea
|
||||||
height="100"
|
auto-grow
|
||||||
|
min-height="100"
|
||||||
:label="$t('recipe.description')"
|
:label="$t('recipe.description')"
|
||||||
v-model="value.description"
|
v-model="value.description"
|
||||||
>
|
>
|
||||||
</v-textarea>
|
</v-textarea>
|
||||||
<div class="my-2"></div>
|
<div class="my-2"></div>
|
||||||
<v-row dense disabled>
|
<v-row dense disabled>
|
||||||
<v-col sm="5">
|
<v-col sm="4">
|
||||||
<v-text-field
|
<v-text-field
|
||||||
:label="$t('recipe.servings')"
|
:label="$t('recipe.servings')"
|
||||||
v-model="value.recipeYield"
|
v-model="value.recipeYield"
|
||||||
|
class="rounded-sm"
|
||||||
>
|
>
|
||||||
</v-text-field>
|
</v-text-field>
|
||||||
</v-col>
|
</v-col>
|
||||||
<v-col></v-col>
|
<v-spacer></v-spacer>
|
||||||
<v-rating
|
<v-rating
|
||||||
class="mr-2 align-end"
|
class="mr-2 align-end"
|
||||||
color="secondary darken-1"
|
color="secondary darken-1"
|
||||||
|
@ -186,6 +188,7 @@
|
||||||
</v-row>
|
</v-row>
|
||||||
|
|
||||||
<v-textarea
|
<v-textarea
|
||||||
|
auto-grow
|
||||||
:label="$t('recipe.note')"
|
:label="$t('recipe.note')"
|
||||||
v-model="value.notes[index]['text']"
|
v-model="value.notes[index]['text']"
|
||||||
>
|
>
|
||||||
|
@ -225,6 +228,7 @@
|
||||||
>
|
>
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
<v-textarea
|
<v-textarea
|
||||||
|
auto-grow
|
||||||
dense
|
dense
|
||||||
v-model="value.recipeInstructions[index]['text']"
|
v-model="value.recipeInstructions[index]['text']"
|
||||||
:key="generateKey('instructions', index)"
|
:key="generateKey('instructions', index)"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue