From 1fc64fc4e2aaca42a683af806b5e24e820dbf2e8 Mon Sep 17 00:00:00 2001 From: Eric Mc Sween Date: Tue, 20 Aug 2019 08:43:54 -0400 Subject: [PATCH] Merge pull request #2084 from overleaf/ta-new-subscription-country Fix Country Auto-Selection on New Subscription Form GitOrigin-RevId: fdf7b197017ee9ce527dd7737240756ff16d206a --- services/web/app/views/subscriptions/new.pug | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/web/app/views/subscriptions/new.pug b/services/web/app/views/subscriptions/new.pug index 8da34d4b40..baa556dfb5 100644 --- a/services/web/app/views/subscriptions/new.pug +++ b/services/web/app/views/subscriptions/new.pug @@ -166,8 +166,8 @@ block content required, ng-selected="{{country.code == data.country}}" ) - option(value='', disabled, selected) #{translate("country")} - option(value='-') -------------- + option(value='', disabled) #{translate("country")} + option(value='-', disabled) -------------- 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' : '' }}