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

Commit

Permalink
wrap sort controls in Box to prevent wrapping (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickjvm authored and alansouzati committed Nov 9, 2016
1 parent e3d46c0 commit f03bcaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/components/Sort.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default class Sort extends Component {
<select ref="sort" value={this.state.name} onChange={this._onChange}>
{options}
</select>
<span>
<Box direction="row">
<Button
icon={<AscIcon
colorIndex={'asc' === this.state.direction ?
Expand All @@ -78,7 +78,7 @@ export default class Sort extends Component {
colorIndex={'desc' === this.state.direction ?
'brand' : undefined} />}
onClick={this._onChangeDirection.bind(this, 'desc')} />
</span>
</Box>
</Box>
</Box>
);
Expand Down

0 comments on commit f03bcaa

Please sign in to comment.