diff options
author | Arundathi Patil <arundpil@in.ibm.com> | 2019-05-21 20:12:12 +0530 |
---|---|---|
committer | Arundathi Patil <arundpil@in.ibm.com> | 2019-05-21 20:13:16 +0530 |
commit | d5739fde3a668c4f657ea900b93377e17743202c (patch) | |
tree | fcfbedaaf9b6e6af65ae6d8376a1a0c8119ce86f /cds-ui/client/src/app/common | |
parent | acbcd280dc9d04ed303ed994872a0f3ba6adbab3 (diff) |
Fixed defect CCSDK-1339
Fixed defect ccsdk-1339
Issue-ID: CCSDK-1339
Change-Id: Iabf12c0c7430cda9a259d1917f344d58c432bd05
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
Diffstat (limited to 'cds-ui/client/src/app/common')
-rw-r--r-- | cds-ui/client/src/app/common/core/store/models/blueprintState.model.ts | 1 | ||||
-rw-r--r-- | cds-ui/client/src/app/common/core/store/reducers/blueprint.reducer.ts | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/cds-ui/client/src/app/common/core/store/models/blueprintState.model.ts b/cds-ui/client/src/app/common/core/store/models/blueprintState.model.ts index 13d7d53fe..6d3aa8c93 100644 --- a/cds-ui/client/src/app/common/core/store/models/blueprintState.model.ts +++ b/cds-ui/client/src/app/common/core/store/models/blueprintState.model.ts @@ -29,6 +29,7 @@ export interface IBlueprintState { files?: any; filesData?: any; uploadedFileName?: string; + entryDefinition?: string; isLoadSuccess?: boolean; isUpdateSuccess?: boolean; isSaveSuccess?: boolean; diff --git a/cds-ui/client/src/app/common/core/store/reducers/blueprint.reducer.ts b/cds-ui/client/src/app/common/core/store/reducers/blueprint.reducer.ts index b4347d458..da933ab5e 100644 --- a/cds-ui/client/src/app/common/core/store/reducers/blueprint.reducer.ts +++ b/cds-ui/client/src/app/common/core/store/reducers/blueprint.reducer.ts @@ -56,7 +56,8 @@ export function blueprintReducer(state: IBlueprintState = initialBlueprintState, name: action.payload.name, files: action.payload.files, filesData: action.payload.filesData, - uploadedFileName: action.payload.uploadedFileName + uploadedFileName: action.payload.uploadedFileName, + entryDefinition: action.payload.entryDefinition } default: return state; |