From 46081fd360dc2b0d4a9d6fd91410e3009550cd19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Fri, 4 Mar 2016 17:24:17 +0100 Subject: [PATCH] fix condition which prevent countryOfBirth to be shown --- Resources/views/Person/edit.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/views/Person/edit.html.twig b/Resources/views/Person/edit.html.twig index fd3a59854..89bc4b44c 100644 --- a/Resources/views/Person/edit.html.twig +++ b/Resources/views/Person/edit.html.twig @@ -46,7 +46,7 @@ {%- if form.placeOfBirth is defined -%} {{ form_row(form.placeOfBirth, { 'label' : 'Place of birth'} ) }} {%- endif -%} - {%- if form.countryOfBirht is defined -%} + {%- if form.countryOfBirth is defined -%} {{ form_row(form.countryOfBirth, { 'label' : 'Country of birth' } ) }} {%- endif -%}