From 6638fdfc31ecd67b4956062e953860d42466a5ad 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 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Will need to be tested when EHoldingsEBSCOTitlesList.vue will be adjusted Signed-off-by: Pedro Amorim Signed-off-by: Agustín Moyano Signed-off-by: Tomas Cohen Arazi --- 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 c52775486f..89f7b96fde 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.39.2