fix api extras

This commit is contained in:
Kuchenpirat 2025-06-03 12:45:23 +00:00
commit 732067aecb

View file

@ -28,7 +28,9 @@
flat flat
class="mb-2 mx-n2" class="mb-2 mx-n2"
> >
<v-card-title> {{ $t('recipe.api-extras') }} </v-card-title> <v-card-title class="text-h5 font-weight-medium opacity-80">
{{ $t('recipe.api-extras') }}
</v-card-title>
<v-divider class="ml-4" /> <v-divider class="ml-4" />
<v-card-text> <v-card-text>
{{ $t('recipe.api-extras-description') }} {{ $t('recipe.api-extras-description') }}
@ -41,6 +43,7 @@
<v-text-field <v-text-field
v-model="recipe.extras[key]" v-model="recipe.extras[key]"
density="compact" density="compact"
variant="underlined"
:label="key" :label="key"
> >
<template #prepend> <template #prepend>
@ -61,7 +64,9 @@
<div> <div>
<v-text-field <v-text-field
v-model="apiNewKey" v-model="apiNewKey"
min-width="200px"
:label="$t('recipe.message-key')" :label="$t('recipe.message-key')"
variant="underlined"
/> />
</div> </div>
<BaseButton <BaseButton