Merge remote-tracking branch 'origin/jel-payment-countries'

GitOrigin-RevId: 412422397ad36408566899b7b2bcbbaabf88138b
This commit is contained in:
Douglas Lovell 2019-03-05 11:25:44 -03:00 committed by James Allen
parent ce8695c951
commit 24da4799ed

View file

@ -161,11 +161,11 @@ block content
name="country"
ng-change="updateCountry()"
required,
ng-options="country.code as country.name for country in countries",
ng-selected="{{country.code == data.country}}"
)
option(value='', disabled, selected) #{translate("country")}
option(value='-') --------------
option(ng-repeat="country in countries" ng-bind-html="country.name" value="{{country.code}}")
span.input-feedback-message {{ simpleCCForm.country.$error.required ? 'This field is required' : '' }}
if (showVatField)