aboutsummaryrefslogtreecommitdiffstats
path: root/ui-react/src/components/loop_viewer/status/LoopStatus.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui-react/src/components/loop_viewer/status/LoopStatus.js')
-rw-r--r--ui-react/src/components/loop_viewer/status/LoopStatus.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-react/src/components/loop_viewer/status/LoopStatus.js b/ui-react/src/components/loop_viewer/status/LoopStatus.js
index 141a41f51..d960c31e6 100644
--- a/ui-react/src/components/loop_viewer/status/LoopStatus.js
+++ b/ui-react/src/components/loop_viewer/status/LoopStatus.js
@@ -46,7 +46,7 @@ const TableRow = ({ statusRow }) => (
export default class LoopStatus extends React.Component {
state = {
- loopCache: new LoopCache({}),
+ loopCache: new LoopCache({})
}
constructor(props) {
@@ -74,7 +74,7 @@ export default class LoopStatus extends React.Component {
componentWillReceiveProps(newProps) {
this.setState({
- loopCache: newProps.loopCache,
+ loopCache: newProps.loopCache
});
}