mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-23 10:45:20 -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>
|
||||
</template>
|
||||
</i18n-t>
|
||||
{{ $t('') }}
|
||||
</p>
|
||||
|
||||
<v-checkbox
|
||||
@@ -239,7 +238,7 @@ export default defineNuxtComponent({
|
||||
});
|
||||
|
||||
function setSelected(data: { name: string; date: string }) {
|
||||
if (selected.value === null || selected.value === undefined) {
|
||||
if (!data.name) {
|
||||
return;
|
||||
}
|
||||
selected.value = data.name;
|
||||
|
||||
Reference in New Issue
Block a user