Adding Prettier and fixing up eslint version
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / licenseModel / overview / licenseModelOverviewActionHelper.js
index af9bc22..0e9fca7 100644 (file)
  * or implied. See the License for the specific language governing
  * permissions and limitations under the License.
  */
-import {actionTypes} from './LicenseModelOverviewConstants.js';
+import { actionTypes } from './LicenseModelOverviewConstants.js';
 
 export default {
-       selectVLMListView(dispatch, {buttonTab}) {
-               dispatch({
-                       type: actionTypes.LICENSE_MODEL_OVERVIEW_TAB_SELECTED,
-                       buttonTab
-               });
-       },
+    selectVLMListView(dispatch, { buttonTab }) {
+        dispatch({
+            type: actionTypes.LICENSE_MODEL_OVERVIEW_TAB_SELECTED,
+            buttonTab
+        });
+    },
 
-       editDescriptionOpen(dispatch, {description}) {
-               dispatch({
-                       type: actionTypes.LM_DATA_CHANGED,
-                       description
-               });
-       },
+    editDescriptionOpen(dispatch, { description }) {
+        dispatch({
+            type: actionTypes.LM_DATA_CHANGED,
+            description
+        });
+    },
 
-       editDescriptionClose(dispatch) {
-               dispatch({
-                       type: actionTypes.LM_DATA_CHANGED,
-                       description: undefined
-               });
-       }
+    editDescriptionClose(dispatch) {
+        dispatch({
+            type: actionTypes.LM_DATA_CHANGED,
+            description: undefined
+        });
+    }
 };