fix: refs #8647 set default value for id prop in InvoiceInDescriptorProxy component

This commit is contained in:
Jorge Penadés 2025-02-28 10:08:29 +01:00
parent c2d8c76512
commit abf2a5bb5d
1 changed files with 1 additions and 1 deletions

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>