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

Commit 90ee0c7

Browse files
authored
Merge pull request #900 from matrix-org/luke/improve-country-dd-4
Add left_aligned class to CountryDropdown
2 parents 2ebd9b6 + 2350277 commit 90ee0c7

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
@@ -115,7 +115,7 @@ export default class CountryDropdown extends React.Component {
115115
// values between mounting and the initial value propgating
116116
const value = this.props.value || COUNTRIES[0].iso2;
117117

118-
return <Dropdown className={this.props.className}
118+
return <Dropdown className={this.props.className + " left_aligned"}
119119
onOptionChange={this._onOptionChange} onSearchChange={this._onSearchChange}
120120
menuWidth={298} getShortOption={this._getShortOption}
121121
value={value} searchEnabled={true}

0 commit comments

Comments
 (0)