From 7fdf733a64670fceefc3ded35cfa581e1c458179 Mon Sep 17 00:00:00 2001 From: Einav Weiss Keidar Date: Tue, 20 Mar 2018 14:45:40 +0200 Subject: Adding Prettier and fixing up eslint version Issue-ID: SDC-1094 Change-Id: Ie83ad95a03899345dd90235daf0323cbe3bc6afd Signed-off-by: Einav Weiss Keidar --- openecomp-ui/src/sdc-app/Application.jsx | 53 ++++++++++++++++---------------- 1 file changed, 27 insertions(+), 26 deletions(-) (limited to 'openecomp-ui/src/sdc-app/Application.jsx') diff --git a/openecomp-ui/src/sdc-app/Application.jsx b/openecomp-ui/src/sdc-app/Application.jsx index aa81eb384c..abebb6d89a 100644 --- a/openecomp-ui/src/sdc-app/Application.jsx +++ b/openecomp-ui/src/sdc-app/Application.jsx @@ -15,7 +15,7 @@ */ import React from 'react'; import PropTypes from 'prop-types'; -import {Provider} from 'react-redux'; +import { Provider } from 'react-redux'; import GlobalModal from 'nfvo-components/modal/GlobalModal.js'; import Loader from 'nfvo-components/loader/Loader.jsx'; import WebSocketUtil from 'nfvo-utils/WebSocketUtil.js'; @@ -24,31 +24,32 @@ import store from './AppStore.js'; import FeaturesActionHelper from 'sdc-app/features/FeaturesActionHelper.js'; class Application extends React.Component { - static propTypes = { - openSocket: PropTypes.bool - }; - componentDidMount() { - const {openSocket = true} = this.props; - if(openSocket) { - UserNotificationsActionHelper.notificationsFirstHandling(store.dispatch); - } - FeaturesActionHelper.getFeaturesList(store.dispatch); - } - componentWillUnmount() { - WebSocketUtil.close(); - } - render() { - return ( - -
- - {this.props.children} - -
-
- ); - } + static propTypes = { + openSocket: PropTypes.bool + }; + componentDidMount() { + const { openSocket = true } = this.props; + if (openSocket) { + UserNotificationsActionHelper.notificationsFirstHandling( + store.dispatch + ); + } + FeaturesActionHelper.getFeaturesList(store.dispatch); + } + componentWillUnmount() { + WebSocketUtil.close(); + } + render() { + return ( + +
+ + {this.props.children} + +
+
+ ); + } } export default Application; - -- cgit 1.2.3-korg