From 4f012b947cba2e6442f3f41caa938dac6dd05ca3 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Mon, 5 May 2025 15:17:34 -0300 Subject: [PATCH] Bug 39837: Fix uses of `interface_id` --- .../prog/js/vue/components/Vendors/VendorFormAdd.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorFormAdd.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorFormAdd.vue index 3c042ca82d6..156c358efd1 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorFormAdd.vue +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorFormAdd.vue @@ -143,8 +143,11 @@ export default { ); vendor.interfaces = this.checkContactOrInterface( vendor.interfaces.map( - ({ interface_id, vendor_id, ...requiredProperties }) => - requiredProperties + ({ + vendor_interface_id, + vendor_id, + ...requiredProperties + }) => requiredProperties ) ); -- 2.49.0