We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 734067d commit fe8e5ccCopy full SHA for fe8e5cc
tools/bazar/templates/tableau.twig
@@ -43,6 +43,8 @@ pour différencier les différents tableaux table_1 table_2 #}
43
p => p.propertyName)) %}
44
{% for info in columnsInfo %}
45
{% set val = entry[info.propertyName] %}
46
+ {# sanitize possible errors in values from checkbox #}
47
+ {% set val = val is iterable ? val|filter(v => v == 1)|keys|join(',') : val %}
48
{% set exportval = val %}
49
{% if info.key is empty and displayvaluesinsteadofkeys and (optionsIfDisplayvaluesinsteadofkeys[info.propertyName] is not empty) %}
50
{% if info.multivalues %}
0 commit comments