mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2026-05-07 05:57:52 +02:00
Fix selectize.html.twig for empty value (#1092)
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
|
||||
{% set values = {} %}
|
||||
{% if value is iterable %}
|
||||
{% for v in value %}
|
||||
{% for v in value if v %}
|
||||
{% set values = values|merge({(v): v}) %}
|
||||
{% endfor %}
|
||||
{% elseif value is not empty %}
|
||||
|
||||
Reference in New Issue
Block a user