diff --git a/ui/src/status/components/GettingStarted.js b/ui/src/status/components/GettingStarted.js index 28fd6e6f74..a3d1d179ef 100644 --- a/ui/src/status/components/GettingStarted.js +++ b/ui/src/status/components/GettingStarted.js @@ -1,7 +1,9 @@ import React, {Component} from 'react' import FancyScrollbar from 'shared/components/FancyScrollbar' +import {ErrorHandling} from 'src/shared/decorators/errors' +@ErrorHandling class GettingStarted extends Component { constructor(props) { super(props) diff --git a/ui/src/status/components/NewsFeed.js b/ui/src/status/components/NewsFeed.js index eda8834c07..e2dbb325f1 100644 --- a/ui/src/status/components/NewsFeed.js +++ b/ui/src/status/components/NewsFeed.js @@ -7,7 +7,9 @@ import {fetchJSONFeedAsync} from 'src/status/actions' import FancyScrollbar from 'shared/components/FancyScrollbar' import JSONFeedReader from 'src/status/components/JSONFeedReader' +import {ErrorHandling} from 'src/shared/decorators/errors' +@ErrorHandling class NewsFeed extends Component { constructor(props) { super(props) diff --git a/ui/src/status/containers/StatusPage.js b/ui/src/status/containers/StatusPage.js index a953455c0e..19bd421c85 100644 --- a/ui/src/status/containers/StatusPage.js +++ b/ui/src/status/containers/StatusPage.js @@ -7,7 +7,9 @@ import FancyScrollbar from 'shared/components/FancyScrollbar' import LayoutRenderer from 'shared/components/LayoutRenderer' import {fixtureStatusPageCells} from 'src/status/fixtures' +import {ErrorHandling} from 'src/shared/decorators/errors' +@ErrorHandling class StatusPage extends Component { constructor(props) { super(props)