Merge branch '8647_fix_warnings' of https://gitea.verdnatura.es/verdnatura/salix-front into 8647_fix_warnings
gitea/salix-front/pipeline/pr-dev This commit is unstable Details

This commit is contained in:
Javier Segarra 2025-02-28 10:40:55 +01:00
commit d23b22ca55
4 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,5 @@
<script setup> <script setup>
const model = defineModel({ type: [String, Number], required: true }); const model = defineModel({ type: [String, Number], default: '' });
</script> </script>
<template> <template>
<QDate v-model="model" :today-btn="true" :options="$attrs.options" /> <QDate v-model="model" :today-btn="true" :options="$attrs.options" />

View File

@ -5,7 +5,7 @@ import InvoiceInSummary from './InvoiceInSummary.vue';
const $props = defineProps({ const $props = defineProps({
id: { id: {
type: Number, type: Number,
required: true, default: null,
}, },
}); });
</script> </script>

View File

@ -5,7 +5,7 @@ import SupplierSummary from './SupplierSummary.vue';
const $props = defineProps({ const $props = defineProps({
id: { id: {
type: Number, type: Number,
required: true, default: null,
}, },
}); });
</script> </script>

View File

@ -23,6 +23,10 @@ const $props = defineProps({
required: false, required: false,
default: 'Worker', default: 'Worker',
}, },
summary: {
type: Object,
default: null,
},
}); });
const image = ref(null); const image = ref(null);