From 4f3dbf0edc5183e7a535e2927960c42dafffbcf3 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 7 Mar 2023 16:32:20 +0100 Subject: [PATCH] Bug 33066: Fix default_filters Will need to be tested when EHoldingsEBSCOTitlesList.vue will be adjusted --- koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue index c52775486fc..89f7b96fde5 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue @@ -42,7 +42,10 @@ export default { processing: true, ajax: { url: typeof this.url === "function" ? this.url() : this.url, - ..._dt_default_ajax({ options: this.options }), + ..._dt_default_ajax({ + options: this.options, + default_filters: this.default_filters, + }), }, buttons, search: { search: this.$route.query.q }, -- 2.25.1