From 369065fa40bef492a319d0f89a942f7c35079b87 Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 10 Oct 2019 16:40:55 +0000 Subject: [PATCH] Bug 23626: (follow-up) Fix JS when not viewing results --- koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt index cbb846a8cf..cac8ccbea4 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt +++ b/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 { -- 2.11.0