summaryrefslogtreecommitdiff
path: root/rt/share/html/Search/Elements/SelectChartType
diff options
context:
space:
mode:
Diffstat (limited to 'rt/share/html/Search/Elements/SelectChartType')
-rw-r--r--rt/share/html/Search/Elements/SelectChartType3
1 files changed, 2 insertions, 1 deletions
diff --git a/rt/share/html/Search/Elements/SelectChartType b/rt/share/html/Search/Elements/SelectChartType
index 266885f..c4d95d0 100644
--- a/rt/share/html/Search/Elements/SelectChartType
+++ b/rt/share/html/Search/Elements/SelectChartType
@@ -50,9 +50,10 @@ $Name => 'ChartType'
$Default => 'bar'
</%args>
<select id="<%$Name%>" name="<%$Name%>">
-% foreach my $option (qw(bar pie)) {
+% foreach my $option ('bar', 'pie', 'table') {
% # 'bar' # loc
% # 'pie' # loc
+% # 'table' # loc
<option value="<%$option%>"<% $option eq $Default ? qq[ selected="selected"] : '' |n %>><%loc($option)%></option>
% }
</select>