diff options
Diffstat (limited to 'openecomp-ui/src/sdc-app/heatvalidation/HeatSetup.js')
-rw-r--r-- | openecomp-ui/src/sdc-app/heatvalidation/HeatSetup.js | 28 |
1 files changed, 19 insertions, 9 deletions
diff --git a/openecomp-ui/src/sdc-app/heatvalidation/HeatSetup.js b/openecomp-ui/src/sdc-app/heatvalidation/HeatSetup.js index 925b0095ba..a94cfd9f81 100644 --- a/openecomp-ui/src/sdc-app/heatvalidation/HeatSetup.js +++ b/openecomp-ui/src/sdc-app/heatvalidation/HeatSetup.js @@ -13,16 +13,26 @@ * or implied. See the License for the specific language governing * permissions and limitations under the License. */ -import {connect} from 'react-redux'; -import HeatSetupView from '../onboarding/softwareProduct/attachments/setup/HeatSetupView.jsx'; +import { connect } from 'react-redux'; +import HeatSetupView from '../onboarding/softwareProduct/attachments/setup/HeatSetupView.jsx'; import UploadScreenActionHelper from './UploadScreenActionHelper.js'; -import {mapStateToProps, mapActionsToProps} from '../onboarding/softwareProduct/attachments/setup/HeatSetup.js'; +import { + mapStateToProps, + mapActionsToProps +} from '../onboarding/softwareProduct/attachments/setup/HeatSetup.js'; -const mapActionsToPropsExt = (dispatch) => { - return { - ...mapActionsToProps(dispatch,{}), - onProcessAndValidate: (heatData, heatDataCache) => UploadScreenActionHelper.processAndValidateHeat(dispatch, heatData, heatDataCache) - }; +const mapActionsToPropsExt = dispatch => { + return { + ...mapActionsToProps(dispatch, {}), + onProcessAndValidate: (heatData, heatDataCache) => + UploadScreenActionHelper.processAndValidateHeat( + dispatch, + heatData, + heatDataCache + ) + }; }; -export default connect(mapStateToProps, mapActionsToPropsExt, null, {withRef: true})(HeatSetupView); +export default connect(mapStateToProps, mapActionsToPropsExt, null, { + withRef: true +})(HeatSetupView); |