mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 14:33:33 -07:00
change import from url design
This commit is contained in:
parent
31b9aff128
commit
688b9fc195
1 changed files with 13 additions and 3 deletions
|
@ -2,9 +2,16 @@
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<v-dialog v-model="addRecipe" width="650" @click:outside="reset">
|
<v-dialog v-model="addRecipe" width="650" @click:outside="reset">
|
||||||
<v-card :loading="processing">
|
<v-card :loading="processing">
|
||||||
<v-card-title class="headline"
|
<v-app-bar dark color="primary mb-2">
|
||||||
>{{ $t("new-recipe.from-url") }}
|
<v-icon large left>
|
||||||
</v-card-title>
|
mdi-link
|
||||||
|
</v-icon>
|
||||||
|
<v-toolbar-title class="headline">
|
||||||
|
{{ $t("new-recipe.from-url") }}
|
||||||
|
</v-toolbar-title>
|
||||||
|
|
||||||
|
<v-spacer></v-spacer>
|
||||||
|
</v-app-bar>
|
||||||
|
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
<v-form ref="urlForm">
|
<v-form ref="urlForm">
|
||||||
|
@ -14,7 +21,10 @@
|
||||||
required
|
required
|
||||||
validate-on-blur
|
validate-on-blur
|
||||||
autofocus
|
autofocus
|
||||||
|
class="mt-1"
|
||||||
:rules="[isValidWebUrl]"
|
:rules="[isValidWebUrl]"
|
||||||
|
:hint="$t('new-recipe.url-form-hint')"
|
||||||
|
persistent-hint
|
||||||
></v-text-field>
|
></v-text-field>
|
||||||
</v-form>
|
</v-form>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue