summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSteven Thomas <steve.thomas@amdocs.com>2018-09-25 16:18:36 -0400
committerSteven Thomas <steve.thomas@amdocs.com>2018-09-25 16:18:53 -0400
commit410e8a48a471c6bb814f253abe006f20db0c2750 (patch)
tree3021d11fe8e29f3878b37abef943d5b2c10ff6a5 /src
parentec1670e00f0abec2c7a28a9c0a79ffecd06f24c4 (diff)
readding accidentally deleted code
Issue-ID: AAI-1675 Change-Id: I89e3989b6503f658948a5c370e985e648264b9a2 Signed-off-by: Steven Thomas <steve.thomas@amdocs.com>
Diffstat (limited to 'src')
-rw-r--r--src/app/MainScreenWrapper.jsx5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/app/MainScreenWrapper.jsx b/src/app/MainScreenWrapper.jsx
index 730ac93..3348494 100644
--- a/src/app/MainScreenWrapper.jsx
+++ b/src/app/MainScreenWrapper.jsx
@@ -140,6 +140,8 @@ class MainScreenWrapper extends Component {
extensibleViewNetworkCallbackData,
onExtensibleViewMessageCallback,
onOverlayNetworkCallback,
+ configurableViewsConfig,
+ customComponents,
customRoutes
} = this.props;
@@ -199,6 +201,8 @@ class MainScreenWrapper extends Component {
});
+ let configurableViewList = getConfigurableRoutes(configurableViewsConfig, customComponents);
+
return (
<Router>
<div className='main-app-container'>
@@ -210,6 +214,7 @@ class MainScreenWrapper extends Component {
<Route key='VnfSearchRoute' path='/vnfSearch/:filters?' component={VnfSearch}/>
{customViewList}
{customRoutes}
+ {configurableViewList}
</div>
</Router>
);