requested changes made

This commit is contained in:
Sol Abrahams
2020-09-05 21:07:01 +01:00
committed by Sol Abrahams
parent 0602eb1593
commit a1e772b72f
2 changed files with 34 additions and 31 deletions

View File

@@ -71,7 +71,6 @@ class Dashboard extends React.Component {
}
handleSelect (selected, axis) {
console.log(selected)
const matchedEvents = []
const TIMELINE_AXIS = 0
if (axis === TIMELINE_AXIS) {
@@ -243,10 +242,6 @@ class Dashboard extends React.Component {
}
}
updateSearchQuery (e) {
let queryString = e.target.value
this.props.actions.updateSearchQuery(queryString)
}
render () {
const { actions, app, domain, ui, features } = this.props
@@ -336,7 +331,6 @@ class Dashboard extends React.Component {
<Search
narrative={app.narrative}
queryString={app.searchQuery}
onQueryUpdate={this.updateSearchQuery}
events={domain.events}
onSearchRowClick={this.handleSelect}
/>