diff options
author | 2022-02-01 10:53:44 +0000 | |
---|---|---|
committer | 2022-02-01 10:53:44 +0000 | |
commit | d211be2cbad3ae4dea9dc90dcac80cccd9a510ab (patch) | |
tree | 9aa0dfbce3bdaedda126b021fabf9338eb0040eb /gui-clamp/ui-react/src/components/dialogs/Policy/ViewAllPolicies.js | |
parent | c0a3e2fd655ca42dd3291e2b6f0346e4e44ffc87 (diff) | |
parent | f8ec2dcdcec8a686d3e58d82a99aa097df2f0c41 (diff) |
Merge "Added Menu and Loop Jest Tests"
Diffstat (limited to 'gui-clamp/ui-react/src/components/dialogs/Policy/ViewAllPolicies.js')
-rw-r--r-- | gui-clamp/ui-react/src/components/dialogs/Policy/ViewAllPolicies.js | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gui-clamp/ui-react/src/components/dialogs/Policy/ViewAllPolicies.js b/gui-clamp/ui-react/src/components/dialogs/Policy/ViewAllPolicies.js index f571bc1..0aed5f4 100644 --- a/gui-clamp/ui-react/src/components/dialogs/Policy/ViewAllPolicies.js +++ b/gui-clamp/ui-react/src/components/dialogs/Policy/ViewAllPolicies.js @@ -2,8 +2,8 @@ * ============LICENSE_START======================================================= * ONAP POLICY-CLAMP * ================================================================================ - * Copyright (C) 2021 AT&T Intellectual Property. All rights - * reserved. + * Copyright (C) 2021 AT&T Intellectual Property. All rights reserved. + * Modifications Copyright (C) 2022 Nordix Foundation. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -44,11 +44,9 @@ import DehazeIcon from '@material-ui/icons/Dehaze'; import ArrowForwardIosIcon from '@material-ui/icons/ArrowForwardIos'; import AddIcon from '@material-ui/icons/Add'; import PublishIcon from '@material-ui/icons/Publish'; -import Switch from '@material-ui/core/Switch'; import MaterialTable from "material-table"; import PolicyService from '../../../api/PolicyService'; import PolicyToscaService from '../../../api/PolicyToscaService'; -import Select from '@material-ui/core/Select'; import Alert from 'react-bootstrap/Alert'; import Tabs from 'react-bootstrap/Tabs'; import Tab from 'react-bootstrap/Tab'; @@ -251,6 +249,7 @@ export default class ViewAllPolicies extends React.Component { } handleClose() { + console.log("handleClose called"); this.setState({ show: false }); this.props.history.push('/') } |