Add country prefix to country dd options

This commit is contained in:
Luke Barnard 2017-05-18 17:02:19 +01:00
parent 384f50609d
commit ee64f4a8dd

View file

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