Merge pull request #529 from influxdata/fix/alert-table-function

fix function name in AlertsTable componentWillReceiveProps
pull/538/head
Andrew Watkins 2016-11-14 09:59:07 -08:00 committed by GitHub
commit ba563ecda3
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ const AlertsTable = React.createClass({
},
componentWillReceiveProps(newProps) {
this.setFilteredAlerts(newProps.alerts, this.state.searchTerm);
this.filterAlerts(newProps.alerts, this.state.searchTerm);
},
filterAlerts(allAlerts, searchTerm) {