Merge pull request #2765 from jryans/dropdown-redesign

Tweak country dropdown for redesign
This commit is contained in:
J. Ryan Stinnett 2019-03-08 10:08:45 +00:00 committed by GitHub
commit b0863768e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 8 deletions

View file

@ -113,7 +113,7 @@ export default class CountryDropdown extends React.Component {
const options = displayedCountries.map((country) => {
return <div className="mx_CountryDropdown_option" key={country.iso2}>
{ this._flagImgForIso2(country.iso2) }
{ country.name } <span>(+{ country.prefix })</span>
{ country.name } (+{ country.prefix })
</div>;
});