Remove linter errors
parent
25738d405f
commit
dcd017413c
|
@ -3,7 +3,7 @@ import AlertsTable from '../components/AlertsTable';
|
||||||
import {getAlerts} from '../apis';
|
import {getAlerts} from '../apis';
|
||||||
|
|
||||||
// Kevin: because we were getting strange errors saying
|
// Kevin: because we were getting strange errors saying
|
||||||
// "Failed prop type: Required prop `source` was not specified in `AlertsApp`."
|
// "Failed prop type: Required prop `source` was not specified in `AlertsApp`."
|
||||||
// Tim and I decided to make the source and addFlashMessage props not required.
|
// Tim and I decided to make the source and addFlashMessage props not required.
|
||||||
// FIXME: figure out why that wasn't working
|
// FIXME: figure out why that wasn't working
|
||||||
const AlertsApp = React.createClass({
|
const AlertsApp = React.createClass({
|
||||||
|
@ -21,16 +21,10 @@ const AlertsApp = React.createClass({
|
||||||
|
|
||||||
getInitialState() {
|
getInitialState() {
|
||||||
return {
|
return {
|
||||||
alerts: [],
|
alerts: getAlerts(),
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
componentDidMount() {
|
|
||||||
this.setState(
|
|
||||||
{ alerts:getAlerts() }
|
|
||||||
);
|
|
||||||
},
|
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
// I stole this from the Hosts page.
|
// I stole this from the Hosts page.
|
||||||
|
|
Loading…
Reference in New Issue