Skip to content

Commit

Permalink
fix #1285
Browse files Browse the repository at this point in the history
  • Loading branch information
AllenFang committed May 13, 2017
1 parent 1afc1f9 commit db1f8e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/toolbar/ShowSelectedOnlyButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class ShowSelectedOnlyButton extends Component {
...rest
} = this.props;
const content = children ||
(<span>{ toggle ? showOnlySelectText : showAllText }</span>);
(<span>{ toggle ? showAllText : showOnlySelectText }</span>);
return (
<button type='button'
aria-pressed='false'
Expand Down

0 comments on commit db1f8e7

Please sign in to comment.