summaryrefslogtreecommitdiffstats
path: root/src/app/tierSupport/TierSupportReducer.js
diff options
context:
space:
mode:
authorsteventh <steve.thomas@amdocs.com>2018-02-27 11:40:28 -0500
committersteventh <steve.thomas@amdocs.com>2018-02-27 14:50:13 -0500
commite97e160e9d9d93b7e45c30166f4a0fec6b2e613d (patch)
treec69e7067624b3057eae27dca7bf0d4be179a2e82 /src/app/tierSupport/TierSupportReducer.js
parent9fcc0c271c53041e7e196182af51368fbce7dd3f (diff)
Adding Violation History to DIO
Issue-ID: AAI-817 Change-Id: I2fbdbea3eedc568ef7046d83496890969a0c85ec Signed-off-by: steventh <steve.thomas@amdocs.com>
Diffstat (limited to 'src/app/tierSupport/TierSupportReducer.js')
-rw-r--r--src/app/tierSupport/TierSupportReducer.js9
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;