mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-23 18:55:15 -05:00
fix: Backup selection doesn't work sometimes (#6759)
This commit is contained in:
@@ -37,7 +37,6 @@
|
|||||||
$t('settings.backup.backup-restore-process-in-the-documentation') }}</a>
|
$t('settings.backup.backup-restore-process-in-the-documentation') }}</a>
|
||||||
</template>
|
</template>
|
||||||
</i18n-t>
|
</i18n-t>
|
||||||
{{ $t('') }}
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<v-checkbox
|
<v-checkbox
|
||||||
@@ -239,7 +238,7 @@ export default defineNuxtComponent({
|
|||||||
});
|
});
|
||||||
|
|
||||||
function setSelected(data: { name: string; date: string }) {
|
function setSelected(data: { name: string; date: string }) {
|
||||||
if (selected.value === null || selected.value === undefined) {
|
if (!data.name) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
selected.value = data.name;
|
selected.value = data.name;
|
||||||
|
|||||||
Reference in New Issue
Block a user