Revert "Fix selectize.html.twig for empty value (#1092)"

This reverts commit 4e88ec9379.
This commit is contained in:
Andy Miller
2017-04-26 10:14:24 -06:00
parent 4e88ec9379
commit 0b3dbaacdf

View File

@@ -6,7 +6,7 @@
{% set values = {} %}
{% if value is iterable %}
{% for v in value if v %}
{% for v in value %}
{% set values = values|merge({(v): v}) %}
{% endfor %}
{% elseif value is not empty %}