From 1e4a72f1a7a9bd17afc489522bf02bdf8f00959d Mon Sep 17 00:00:00 2001 From: Ronaldo Richieri Date: Wed, 15 Nov 2023 10:26:57 -0300 Subject: [PATCH] Add option to hide the download button on charts Add the $HideChartDownloadButton configuration that allows to hide the download button on charts. --- .../Search/Elements/Chart/AfterChartTable | 2 ++ 1 file changed, 2 insertions(+) diff --git a/html/Callbacks/RT-Extension-ExcelFeed/Search/Elements/Chart/AfterChartTable b/html/Callbacks/RT-Extension-ExcelFeed/Search/Elements/Chart/AfterChartTable index b76befe..170a6b1 100644 --- a/html/Callbacks/RT-Extension-ExcelFeed/Search/Elements/Chart/AfterChartTable +++ b/html/Callbacks/RT-Extension-ExcelFeed/Search/Elements/Chart/AfterChartTable @@ -1,5 +1,7 @@ <&|/l&>Download as Microsoft Excel Spreadsheet <%INIT> +return if RT->Config->Get('HideChartDownloadButton'); + my $query_string = '?' . $m->comp('/Elements/QueryString', Query => $ARGSRef->{Query}, GroupBy => $ARGSRef->{GroupBy},