From abf2a5bb5dc4d7b2faa7a0a737b579d501406ad8 Mon Sep 17 00:00:00 2001 From: jorgep Date: Fri, 28 Feb 2025 10:08:29 +0100 Subject: [PATCH] fix: refs #8647 set default value for id prop in InvoiceInDescriptorProxy component --- src/pages/InvoiceIn/Card/InvoiceInDescriptorProxy.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/InvoiceIn/Card/InvoiceInDescriptorProxy.vue b/src/pages/InvoiceIn/Card/InvoiceInDescriptorProxy.vue index e9ca762ed..2c8cab84f 100644 --- a/src/pages/InvoiceIn/Card/InvoiceInDescriptorProxy.vue +++ b/src/pages/InvoiceIn/Card/InvoiceInDescriptorProxy.vue @@ -5,7 +5,7 @@ import InvoiceInSummary from './InvoiceInSummary.vue'; const $props = defineProps({ id: { type: Number, - required: true, + default: null, }, });