From a19a6baaab6bc42c9e34ec8c3d4a4f04f7b764b8 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