From c43bf4c040de25e9166626f59a6138fd6815ebf8 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 7 Apr 2023 11:00:34 +0200 Subject: [PATCH] Bug 33443: Restore "X titles found locally" link from EBSCO title list The link is missing, and there was a JS error in the console Uncaught (in promise) ReferenceError: filters is not defined --- .../prog/js/vue/components/ERM/EHoldingsEBSCOTitlesList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsEBSCOTitlesList.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsEBSCOTitlesList.vue index bbd6d54e8c6..c8df0e820b5 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsEBSCOTitlesList.vue +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsEBSCOTitlesList.vue @@ -142,7 +142,7 @@ export default { if (this.erm_providers.includes("local")) { const client = APIClient.erm - const q = filters + const q = this.filters ? { ...(this.filters.publication_title ? { -- 2.25.1