From aac6c6e4e452c5ef96155494eadf45cbdb45c39a 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 This fixes the width to 100%, otherwise it is not recalculated correctly --- 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