diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt index ebd30b6202..59f850f22b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt @@ -336,12 +336,12 @@ $("li.csv_profiles").hide(); - $("#bibs select[name='output_format']").on('change', function(){ + $("#bibs_panel select[name='output_format']").on('change', function(){ var format = $(this).val(); if ( format == 'csv' ) { - $("#bibs li.csv_profiles").show(); + $("#bibs_panel li.csv_profiles").show(); } else { - $("#bibs li.csv_profiles").hide(); + $("#bibs_panel li.csv_profiles").hide(); } }); $("#checkall").on("click",function(e){