Skip to content

Commit

Permalink
fixed an issue with pager
Browse files Browse the repository at this point in the history
  • Loading branch information
ali1k committed Jun 30, 2015
1 parent 2dc6de4 commit 400ea26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/ResourceListPager.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class ResourceListPager extends React.Component {
}
if(this.props.handleClick){
return (
<a onClick={this.props.handleClick.bind(this, p)} key={page} className={'ui ' + color + ' label'}> {icon ? <i className={icon}></i> : {page}} </a>
<a onClick={this.props.handleClick.bind(this, p)} key={page} className={'ui ' + color + ' label'}> {icon ? <i className={icon}></i> : <span>{page}</span>} </a>
);
}else{
return (
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "linked-data-reactor",
"version": "0.2.5",
"version": "0.2.7",
"description": "Linked Data Reactor",
"private": false,
"repository": {
Expand Down

0 comments on commit 400ea26

Please sign in to comment.