mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-17 11:47:02 +02:00
Add country prefix to country dd options
This commit is contained in:
parent
384f50609d
commit
ee64f4a8dd
@ -112,7 +112,7 @@ export default class CountryDropdown extends React.Component {
|
|||||||
const options = displayedCountries.map((country) => {
|
const options = displayedCountries.map((country) => {
|
||||||
return <div key={country.iso2}>
|
return <div key={country.iso2}>
|
||||||
{this._flagImgForIso2(country.iso2)}
|
{this._flagImgForIso2(country.iso2)}
|
||||||
{country.name}
|
{country.name} <span>(+{country.prefix})</span>
|
||||||
</div>;
|
</div>;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user