From 9f148c58c179fc2bc41006ad4e886d89cfcd2507 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 4 Oct 2023 11:42:44 +0200 Subject: [PATCH] Bug 34982: Add pagination to the currencies table Otherwise we only display the first 20. Test plan: Create more than 20 currencies and confirm that you can know filter the table and see all the currencies. --- koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt | 1 - 1 file changed, 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt index 83644f7133b..aaf7c464380 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt @@ -293,7 +293,6 @@ $(document).ready(function() { columns_settings = [% TablesSettings.GetTableSettings( 'admin', 'currency', 'currencies-table', 'json' ) | $raw %] var issuest = KohaTable("currencies-table", { - dom: 'B<"clearfix">t', }, columns_settings ); // prevents users to check active with a currency != 1 -- 2.34.1