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

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
airycanon committed Oct 13, 2017
1 parent e025d39 commit 80e4139
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ export default class Header extends Component {
const {viewStore} = this.props;

let headerLeft, headerRight;
if (viewStore.hasSelected) {
if (viewStore.hasChecked) {
headerLeft = <Col span={6} offset={6}>
<span className="header-selected-info">已选择 {viewStore.selectedHistories.length}</span>
<span className="header-selected-info">已选择 {viewStore.checkedHistories.length}</span>
</Col>;
headerRight = <Col span={6} className="header-right col-right">
<Col span={6}>
Expand Down

0 comments on commit 80e4139

Please sign in to comment.