diff options
author | Ajith Sreekumar <ajith.sreekumar@bell.ca> | 2021-06-28 10:26:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-06-28 10:26:49 +0000 |
commit | 3ce5dd80f2db18bf2afc3c2bde14d09c7562c0a8 (patch) | |
tree | 658a3091bfacc372b9283e7a5294ffdd6316946a /gui-clamp/ui-react/src/LoopUI.js | |
parent | 590e499033ccd348f646bc0301db2e9bf92cedf3 (diff) | |
parent | 6ad48326583f162c163d6c272a3d83fb8a01353d (diff) |
Merge "Add Tosca Monitoring App to Policy Gui"
Diffstat (limited to 'gui-clamp/ui-react/src/LoopUI.js')
-rw-r--r-- | gui-clamp/ui-react/src/LoopUI.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gui-clamp/ui-react/src/LoopUI.js b/gui-clamp/ui-react/src/LoopUI.js index 6904122..4009bf1 100644 --- a/gui-clamp/ui-react/src/LoopUI.js +++ b/gui-clamp/ui-react/src/LoopUI.js @@ -17,6 +17,7 @@ * SPDX-License-Identifier: Apache-2.0 * ============LICENSE_END========================================================= */ + import React from 'react'; import styled from 'styled-components'; import MenuBar from './components/menu/MenuBar'; @@ -51,6 +52,7 @@ import Spinner from 'react-bootstrap/Spinner'; import { Link } from 'react-router-dom'; import ReadAndConvertYaml from "./components/dialogs/ReadAndConvertYaml"; +import MonitoringControlLoopModal from "./components/dialogs/ControlLoop/MonitoringControlLoopModal"; import GetLocalToscaFileForUpload from "./components/dialogs/GetLocalToscaFileForUpload"; const StyledMainDiv = styled.div` @@ -380,6 +382,7 @@ export default class LoopUI extends React.Component { showSucAlert={ this.showSucAlert } showFailAlert={ this.showFailAlert }/>) } /> + <Route path="/monitoring" render={ (routeProps) => (<MonitoringControlLoopModal { ...routeProps } />) }/> </React.Fragment> ); } |