From 029c085ba49259aadb92d0f6042c27deeac01cc5 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 7 Mar 2023 16:46:48 +0100 Subject: [PATCH] Bug 33066: Fix width after ColVis change MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This fixes the width to 100%, otherwise it is not recalculated correctly Signed-off-by: Pedro Amorim Signed-off-by: Agustín Moyano --- koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue | 1 + 1 file changed, 1 insertion(+) 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 88d4ca61823..6965576a990 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue @@ -40,6 +40,7 @@ export default { searching: true, pagingType: "full_numbers", processing: true, + autoWidth: false, ajax: { url: typeof this.url === "function" ? this.url() : this.url, ..._dt_default_ajax({ -- 2.25.1