Add color categories correct shade to card

This commit is contained in:
Franc Camps-Febrer
2018-12-03 14:43:13 +00:00
parent 576aceba35
commit 0a6ba78389
7 changed files with 22 additions and 22 deletions

View File

@@ -22,6 +22,7 @@ class CardStack extends React.Component {
event={event}
language={this.props.language}
tools={this.props.tools}
style={this.props.style}
isLoading={this.props.isLoading}
getNarrativeLinks={this.props.getNarrativeLinks}
getCategoryGroup={this.props.getCategoryGroup}
@@ -96,8 +97,9 @@ class CardStack extends React.Component {
function mapStateToProps(state) {
return {
selected: state.app.selected,
language: state.app.selected,
language: state.app.language,
tools: state.ui.tools,
style: state.ui.style,
isCardstack: state.ui.flags.isCardstack,
isLoading: state.ui.flags.isFetchingEvents
}