rename CardStack handlers

This commit is contained in:
Lachlan Kermode
2018-12-04 12:28:40 +00:00
parent ebb37a845a
commit 77db0b8b7d
2 changed files with 6 additions and 6 deletions

View File

@@ -27,8 +27,8 @@ class CardStack extends React.Component {
getCategoryGroup={this.props.getCategoryGroup}
getCategoryColor={this.props.getCategoryColor}
getCategoryLabel={this.props.getCategoryLabel}
highlight={this.props.highlight}
select={this.props.select}
highlight={this.props.onHighlight}
select={this.props.onSelect}
/>
);
});
@@ -54,7 +54,7 @@ class CardStack extends React.Component {
<div
id='card-stack-header'
className='card-stack-header'
onClick={() => this.props.toggle('TOGGLE_CARDSTACK')}
onClick={() => this.props.onToggle('TOGGLE_CARDSTACK')}
>
<button className="side-menu-burg is-active"><span></span></button>
<p className="header-copy top">

View File

@@ -126,9 +126,9 @@ class Dashboard extends React.Component {
actions={this.props.actions}
/>
<CardStack
select={this.handleSelect}
highlight={this.handleHighlight}
toggle={this.handleToggle}
onSelect={this.handleSelect}
onHighlight={this.handleHighlight}
onToggle={this.handleToggle}
getNarrativeLinks={event => this.getNarrativeLinks(event)}
getCategoryColor={category => this.getCategoryColor(category)}
/>