Skip to content

Commit

Permalink
Ref #16651 - Fix code forgot in #16651 for charts
Browse files Browse the repository at this point in the history
Signed-off-by: William Desportes <williamdes@wdes.fr>
  • Loading branch information
williamdes committed Mar 15, 2021
1 parent 0b440f2 commit 1da5be9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/table/chart/tbl_chart.twig
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
<select name="chartValueColumn" id="select_valueColumn" disabled>
{% set selected = false %}
{% for idx, key in keys %}
{% if fields_meta[idx].type in numeric_types %}
{% if fields_meta[idx].isNumericType() %}
{% if not selected and idx != xaxis and idx != series_column %}
<option value="{{ idx }}" selected="selected">{{ key }}</option>
{% set selected = true %}
Expand Down

0 comments on commit 1da5be9

Please sign in to comment.