mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-05 04:06:44 +02:00
Remove span to regain explicit whitespace for country options
This change restores whitespace between the country name and prefix code in the country dropdown.
This commit is contained in:
parent
1cefa44319
commit
d93e97bcd2
@ -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>;
|
||||
});
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user