Skip to content
This repository has been archived by the owner on Jul 31, 2018. It is now read-only.

Commit

Permalink
Minor fix filter selected style
Browse files Browse the repository at this point in the history
  • Loading branch information
JYChao committed Mar 7, 2016
1 parent f590c25 commit e1820b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/components/Footer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Footer extends Component {
const { filter: selectedFilter, onShow } = this.props

return (
<a className={classnames({ selected: filter === selectedFilter })}
<a className={classnames({ [style.selected]: filter === selectedFilter })}
style={{ cursor: 'pointer' }}
onClick={() => onShow(filter)}>
{title}
Expand Down

0 comments on commit e1820b8

Please sign in to comment.