mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 08:14:30 -04:00
fix: multiple regressions on data management page (#5758)
This commit is contained in:
@@ -126,7 +126,7 @@
|
||||
<!-- Alias Sub-Dialog -->
|
||||
<RecipeDataAliasManagerDialog
|
||||
v-if="editTarget"
|
||||
:value="aliasManagerDialog"
|
||||
v-model="aliasManagerDialog"
|
||||
:data="editTarget"
|
||||
@submit="updateFoodAlias"
|
||||
@cancel="aliasManagerDialog = false"
|
||||
|
||||
@@ -44,6 +44,7 @@
|
||||
:title="$t('general.confirm')"
|
||||
:icon="$globals.icons.alertCircle"
|
||||
color="error"
|
||||
can-confirm
|
||||
@confirm="deleteTag"
|
||||
>
|
||||
<v-card-text>
|
||||
|
||||
@@ -52,6 +52,7 @@
|
||||
:title="$t('general.confirm')"
|
||||
:icon="$globals.icons.alertCircle"
|
||||
color="error"
|
||||
can-confirm
|
||||
@confirm="deleteTool"
|
||||
>
|
||||
<v-card-text>
|
||||
|
||||
@@ -19,30 +19,16 @@
|
||||
v-model="fromUnit"
|
||||
return-object
|
||||
:items="store"
|
||||
item-title="id"
|
||||
item-title="name"
|
||||
:label="$t('data-pages.units.source-unit')"
|
||||
>
|
||||
<template #chip="{ item }">
|
||||
{{ item.raw.name }}
|
||||
</template>
|
||||
<template #item="{ item }">
|
||||
{{ item.raw.name }}
|
||||
</template>
|
||||
</v-autocomplete>
|
||||
/>
|
||||
<v-autocomplete
|
||||
v-model="toUnit"
|
||||
return-object
|
||||
:items="store"
|
||||
item-title="id"
|
||||
item-title="name"
|
||||
:label="$t('data-pages.units.target-unit')"
|
||||
>
|
||||
<template #chip="{ item }">
|
||||
{{ item.raw.name }}
|
||||
</template>
|
||||
<template #item="{ item }">
|
||||
{{ item.raw.name }}
|
||||
</template>
|
||||
</v-autocomplete>
|
||||
/>
|
||||
|
||||
<template v-if="canMerge && fromUnit && toUnit">
|
||||
<div class="text-center">
|
||||
|
||||
Reference in New Issue
Block a user