diff options
Diffstat (limited to 'openecomp-ui/src/sdc-app/onboarding/versionsPage')
-rw-r--r-- | openecomp-ui/src/sdc-app/onboarding/versionsPage/VersionsPageConstants.js | 15 | ||||
-rw-r--r-- | openecomp-ui/src/sdc-app/onboarding/versionsPage/creation/VersionsPageCreationConstants.js | 15 |
2 files changed, 18 insertions, 12 deletions
diff --git a/openecomp-ui/src/sdc-app/onboarding/versionsPage/VersionsPageConstants.js b/openecomp-ui/src/sdc-app/onboarding/versionsPage/VersionsPageConstants.js index 3a3879ddb3..74afde56b3 100644 --- a/openecomp-ui/src/sdc-app/onboarding/versionsPage/VersionsPageConstants.js +++ b/openecomp-ui/src/sdc-app/onboarding/versionsPage/VersionsPageConstants.js @@ -1,5 +1,5 @@ /*! - * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. + * Copyright © 2016-2018 European Support Limited * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,11 +15,14 @@ */ import keyMirror from 'nfvo-utils/KeyMirror.js'; -export const actionTypes = keyMirror({ - VERSIONS_LOADED: null, - SELECT_VERSION: null, - SELECT_NONE: null -}); +export const actionTypes = keyMirror( + { + VERSIONS_LOADED: null, + SELECT_VERSION: null, + SELECT_NONE: null + }, + 'versionPage' +); export const itemTypes = { LICENSE_MODEL: 'vendor-license-models', diff --git a/openecomp-ui/src/sdc-app/onboarding/versionsPage/creation/VersionsPageCreationConstants.js b/openecomp-ui/src/sdc-app/onboarding/versionsPage/creation/VersionsPageCreationConstants.js index e761232443..2d4af64a20 100644 --- a/openecomp-ui/src/sdc-app/onboarding/versionsPage/creation/VersionsPageCreationConstants.js +++ b/openecomp-ui/src/sdc-app/onboarding/versionsPage/creation/VersionsPageCreationConstants.js @@ -1,5 +1,5 @@ /*! - * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. + * Copyright © 2016-2018 European Support Limited * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,11 +15,14 @@ */ import keyMirror from 'nfvo-utils/KeyMirror.js'; -export const actionTypes = keyMirror({ - OPEN: null, - CLOSE: null, - VERSION_CREATED: null -}); +export const actionTypes = keyMirror( + { + OPEN: null, + CLOSE: null, + VERSION_CREATED: null + }, + 'versionPageCreation' +); export const VERSION_CREATION_FORM_NAME = 'VCREATIONFORM'; |