Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit ee64f4a

Browse files
author
Luke Barnard
committed
Add country prefix to country dd options
1 parent 384f506 commit ee64f4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/views/login/CountryDropdown.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export default class CountryDropdown extends React.Component {
112112
const options = displayedCountries.map((country) => {
113113
return <div key={country.iso2}>
114114
{this._flagImgForIso2(country.iso2)}
115-
{country.name}
115+
{country.name} <span>(+{country.prefix})</span>
116116
</div>;
117117
});
118118

0 commit comments

Comments
 (0)