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

Commit

Permalink
Merge pull request #900 from matrix-org/luke/improve-country-dd-4
Browse files Browse the repository at this point in the history
Add left_aligned class to CountryDropdown
  • Loading branch information
lukebarnard1 authored May 18, 2017
2 parents 2ebd9b6 + 2350277 commit 90ee0c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/login/CountryDropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export default class CountryDropdown extends React.Component {
// values between mounting and the initial value propgating
const value = this.props.value || COUNTRIES[0].iso2;

return <Dropdown className={this.props.className}
return <Dropdown className={this.props.className + " left_aligned"}
onOptionChange={this._onOptionChange} onSearchChange={this._onSearchChange}
menuWidth={298} getShortOption={this._getShortOption}
value={value} searchEnabled={true}
Expand Down

0 comments on commit 90ee0c7

Please sign in to comment.