From 7ca35150cd7d866f51db258540024dabbd04921e Mon Sep 17 00:00:00 2001 From: Alex Sherman Date: Mon, 17 May 2021 14:02:08 +0500 Subject: [PATCH] Fix typo --- app/views/registrar/contacts/form/_address.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/registrar/contacts/form/_address.haml b/app/views/registrar/contacts/form/_address.haml index 7789c2891b..e70d00cd82 100644 --- a/app/views/registrar/contacts/form/_address.haml +++ b/app/views/registrar/contacts/form/_address.haml @@ -31,6 +31,6 @@ = f.label :country_code, t(:country) + '*' .col-md-7 - country_selected = f.object.persisted? ? f.object.country_code : 'EE' - = f.select(:country_code, SApplicationController.helpers.all_country_options(country_selected), + = f.select(:country_code, ApplicationController.helpers.all_country_options(country_selected), { include_blank: true }, required: true)