From 773c808bd7916051674d4e262a92a530533c1651 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` Signed-off-by: Martin Renvoize --- .../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 e5e7a384741..4f770c0456a 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 @@ -144,8 +144,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