diff options
author | Steven Blimkie <Steven.Blimkie@amdocs.com> | 2018-02-27 19:59:00 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-02-27 19:59:00 +0000 |
commit | cc044fcbea7f5c374874777d89da938560556c52 (patch) | |
tree | c39f262ada2af862641f79e3b0b2f1a1c3719fc5 /src/app/tierSupport/TierSupportReducer.js | |
parent | de41458fd5bbd9a7b642a769816d1f08663174e1 (diff) | |
parent | e97e160e9d9d93b7e45c30166f4a0fec6b2e613d (diff) |
Merge "Adding Violation History to DIO"
Diffstat (limited to 'src/app/tierSupport/TierSupportReducer.js')
-rw-r--r-- | src/app/tierSupport/TierSupportReducer.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/app/tierSupport/TierSupportReducer.js b/src/app/tierSupport/TierSupportReducer.js index c9a4faf..7062360 100644 --- a/src/app/tierSupport/TierSupportReducer.js +++ b/src/app/tierSupport/TierSupportReducer.js @@ -98,7 +98,7 @@ export default combineReducers({ return { ...state, enableBusyFeedback: false - }; + }; case globalAutoCompleteSearchBarActionTypes.SEARCH_WARNING_EVENT: let emptyNodesAndLinksWarningEvent = ForceDirectedGraph.generateNewProps([], [], {}); return { @@ -118,6 +118,13 @@ export default combineReducers({ } else { return state; } + case tierSupportActionTypes.TS_OVERLAY_NETWORK_CALLBACK_RESPONSE_RECEIVED: + let newNodeData = JSON.parse(JSON.stringify(action.data.curData)); + newNodeData[action.data.paramName] = action.data.overlayData; + return { + ...state, + nodeData: newNodeData + }; } return state; |