@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt @@ -1161,7 +1161,7 @@ canned reports and writing custom SQL reports.

$(document).ready(function(){ $("body").on('click',".fetch_chart_data",function(){ - if( [% unlimited_total | $raw %] > 1000 ){ + if( [% unlimited_total || 0 | $raw %] > 1000 ){ if( confirm("Fetching full chart data for reports with many rows can cause performance issues. Are you sure you with to chart this report?") ){ return true; } else { --