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

wrap sort controls in Box to prevent wrapping #80

Merged
merged 1 commit into from
Nov 9, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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