move select to methods arg in timeline

This commit is contained in:
Lachlan Kermode
2018-12-04 11:28:31 +00:00
parent 5c026f12d8
commit 2edfbb5d19
2 changed files with 3 additions and 3 deletions

View File

@@ -24,7 +24,6 @@ class Timeline extends React.Component {
timerange: this.props.timerange,
selected: this.props.selected,
language: this.props.language,
select: this.props.select,
}
const ui = {
tools: this.props.tools,
@@ -32,6 +31,7 @@ class Timeline extends React.Component {
}
const methods = {
select: this.props.select,
filter: this.props.filter,
getCategoryColor: this.props.getCategoryColor
}