Add error handling to status components

pull/10616/head
Brandon Farmer 2018-04-17 14:39:32 -07:00
parent 7c40496e2d
commit c5fd5b1ac2
3 changed files with 6 additions and 0 deletions

View File

@ -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)

View File

@ -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)

View File

@ -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)