From 87858e95ccd0a4a28e10abb77673e0b129afa8bd Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Wed, 27 Nov 2024 10:40:59 +0000 Subject: [PATCH] Bug 38290: Set lib_group_visibility as null --- .../prog/js/vue/components/Vendors/VendorFormAdd.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 98edb530fa8..d2c70b5dc0d 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 @@ -156,7 +156,7 @@ export default { } const visibility = vendor.lib_group_visibility.join("|") - vendor.lib_group_visibility = visibility + vendor.lib_group_visibility = visibility || null const client = APIClient.acquisition if (vendorId) { -- 2.39.5 (Apple Git-154)