diff --git a/Resources/views/CustomFieldsRendering/choice.html.twig b/Resources/views/CustomFieldsRendering/choice.html.twig
index c4dc4328f..02f6ab13b 100644
--- a/Resources/views/CustomFieldsRendering/choice.html.twig
+++ b/Resources/views/CustomFieldsRendering/choice.html.twig
@@ -1,23 +1,29 @@
{% if selected|length > 0 %}
-
-{%- for choice in choices -%}
- {% if choice['slug'] in selected %}{%- set is_selected = true -%}{%- else -%}{%- set is_selected = false -%}{%- endif -%}
- {%- if is_selected -%}
- -
- {%- if is_selected -%}
-
- {%- else -%}
-
- {%- endif -%}
- {%- if choice['slug'] is not same as('_other') -%}
- {{ choice['name']|localize_translatable_string }}
- {%- else -%}
- {{ choice['name'] }}
- {%- endif -%}
-
- {%- endif -%}
-{%- endfor -%}
-
+
+ {%- for choice in choices -%}
+ {% if choice['slug'] in selected %}
+ {%- set is_selected = true -%}
+ {%- else -%}
+ {%- set is_selected = false -%}
+ {%- endif -%}
+
+ {%- if is_selected -%}
+ -
+ {%- if is_selected -%}
+
+ {%- else -%}
+
+ {%- endif -%}
+
+ {%- if choice['slug'] is not same as('_other') -%}
+ {{ choice['name']|localize_translatable_string }}
+ {%- else -%}
+ {{ choice['name'] }}
+ {%- endif -%}
+
+ {%- endif -%}
+ {%- endfor -%}
+
{% else %}
{{ 'None'|trans }}
{% endif %}
\ No newline at end of file