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
+1 -1
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() {