From ab08c4750fffb9e374d65b11acdf688eb69b0386 Mon Sep 17 00:00:00 2001 From: Jade McGough Date: Thu, 3 Nov 2016 12:36:02 -0700 Subject: [PATCH] fix linting errors --- ui/src/alerts/containers/AlertsApp.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/src/alerts/containers/AlertsApp.js b/ui/src/alerts/containers/AlertsApp.js index 9c27cfdb01..a080757a99 100644 --- a/ui/src/alerts/containers/AlertsApp.js +++ b/ui/src/alerts/containers/AlertsApp.js @@ -21,14 +21,14 @@ const AlertsApp = React.createClass({ getInitialState() { return { - alerts: [] + alerts: [], }; }, componentDidMount() { - return getAlerts(this.props.source.links.proxy).then((resp) => { - this.setState({alerts: resp.alerts}) - }); + return getAlerts(this.props.source.links.proxy).then((resp) => { + this.setState({alerts: resp.alerts}); + }); }, render() {