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

Commit 2350277

Browse files
author
Luke Barnard
committed
Add left_aligned class to CountryDropdown
This indiciates that the dd chevron should be on the left
1 parent 2ebd9b6 commit 2350277

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)