From d93e97bcd2d30c608db1fd8752d7135ab2de78b0 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Wed, 6 Mar 2019 18:00:05 +0000 Subject: [PATCH] Remove span to regain explicit whitespace for country options This change restores whitespace between the country name and prefix code in the country dropdown. --- src/components/views/auth/CountryDropdown.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/auth/CountryDropdown.js b/src/components/views/auth/CountryDropdown.js index 3cbdfe818e..b29bf40625 100644 --- a/src/components/views/auth/CountryDropdown.js +++ b/src/components/views/auth/CountryDropdown.js @@ -113,7 +113,7 @@ export default class CountryDropdown extends React.Component { const options = displayedCountries.map((country) => { return
{ this._flagImgForIso2(country.iso2) } - { country.name } (+{ country.prefix }) + { country.name } (+{ country.prefix })
; });