[Rt-commit] rt branch, 4.0/chartstyle-typo, created. rt-4.0.19-75-gf276e7f
Wallace Reis
wreis at bestpractical.com
Thu Apr 24 17:48:28 EDT 2014
The branch, 4.0/chartstyle-typo has been created
at f276e7fb3e4ffa7499d6f3777ed02f2719f63fb3 (commit)
- Log -----------------------------------------------------------------
commit f276e7fb3e4ffa7499d6f3777ed02f2719f63fb3
Author: Wallace Reis <wreis at bestpractical.com>
Date: Thu Apr 24 18:45:04 2014 -0300
Correct ChartStyle value is 'bar'
The correct dropdown option for ChartStyle is 'bar', not 'bars'. This
was caught while trying to reproduce and find the source for I#29595,
but didn't raise any known issue until now cause the first listed
<option> is 'bar'.
diff --git a/share/html/Search/Chart b/share/html/Search/Chart
index 4be28ab..7256106 100644
--- a/share/html/Search/Chart
+++ b/share/html/Search/Chart
@@ -48,7 +48,7 @@
<%args>
$Query => "id > 0"
$PrimaryGroupBy => 'Queue'
-$ChartStyle => 'bars'
+$ChartStyle => 'bar'
</%args>
<%init>
my $chart_class;
diff --git a/share/html/Search/Chart.html b/share/html/Search/Chart.html
index 952f09c..ab25745 100644
--- a/share/html/Search/Chart.html
+++ b/share/html/Search/Chart.html
@@ -47,7 +47,7 @@
%# END BPS TAGGED BLOCK }}}
<%args>
$PrimaryGroupBy => 'Queue'
-$ChartStyle => 'bars'
+$ChartStyle => 'bar'
$Description => undef
</%args>
<%init>
diff --git a/share/html/Search/Elements/Chart b/share/html/Search/Elements/Chart
index 05a0422..f0d1e4a 100644
--- a/share/html/Search/Elements/Chart
+++ b/share/html/Search/Elements/Chart
@@ -48,7 +48,7 @@
<%args>
$Query => "id > 0"
$PrimaryGroupBy => 'Queue'
-$ChartStyle => 'bars'
+$ChartStyle => 'bar'
</%args>
<%init>
use RT::Report::Tickets;
-----------------------------------------------------------------------
More information about the rt-commit
mailing list