From ee46247ab694f1b83d472f057140e57c568c41c0 Mon Sep 17 00:00:00 2001 From: Jade McGough Date: Sun, 13 Nov 2016 22:08:37 -0800 Subject: [PATCH] fix function name in AlertsTable componentWillReceiveProps --- ui/src/alerts/components/AlertsTable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/alerts/components/AlertsTable.js b/ui/src/alerts/components/AlertsTable.js index 109ea2388..30b3e8dbe 100644 --- a/ui/src/alerts/components/AlertsTable.js +++ b/ui/src/alerts/components/AlertsTable.js @@ -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) {