Fixup current set of vuejs type warnings

This commit is contained in:
Johannes Zellner
2025-04-12 11:33:37 +02:00
parent da7934555c
commit ac23dda8db
3 changed files with 3 additions and 3 deletions

View File

@@ -285,7 +285,7 @@ onMounted(async () => {
<p v-html="$t('backups.archive.description')"></p>
<TableView :columns="columns" :model="archives" :busy="busy" @row-click="onInfo">
<TableView :columns="columns" :model="archives" :busy="busy">
<template #icon="archive">
<img :src="archive.iconUrl || 'img/appicon_fallback.png'" v-fallback-image="API_ORIGIN + '/img/appicon_fallback.png'" height="24" width="24"/>
</template>

View File

@@ -103,7 +103,7 @@ const configureDays = ref([]);
const configureHours = ref([]);
const configureRetention = ref('');
const isConfigureValid = computed(() => {
return configureDays.value.length && configureHours.value.length;
return !!configureDays.value.length && !!configureHours.value.length;
});
function onConfigure() {