Fixup current set of vuejs type warnings
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user