summaryrefslogtreecommitdiffstats
path: root/ui-react/src/components/dialogs/Policy/PolicyModal.js
diff options
context:
space:
mode:
authorsebdet <sebastien.determe@intl.att.com>2021-04-28 11:12:45 +0200
committerS�bastien Determe <sebastien.determe@intl.att.com>2021-05-05 13:05:48 +0000
commit44fac5a66971a6013c429537ab2b509d1a1a8a91 (patch)
treef1e24b9eeb191ad5c4e5bdcc03f46b89b85eafd5 /ui-react/src/components/dialogs/Policy/PolicyModal.js
parent4423d367c47d818493fbad627a43ba68f87d15f2 (diff)
Add Tests on UI
Add some test to UI and fix errors reported by JEST during Ui tests Issue-ID: POLICY-3200 Signed-off-by: sebdet <sebastien.determe@intl.att.com> Change-Id: I69e93ad1f1714fa60a0c7ea9b1f3fb691f089f8a Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Diffstat (limited to 'ui-react/src/components/dialogs/Policy/PolicyModal.js')
-rw-r--r--ui-react/src/components/dialogs/Policy/PolicyModal.js21
1 files changed, 3 insertions, 18 deletions
diff --git a/ui-react/src/components/dialogs/Policy/PolicyModal.js b/ui-react/src/components/dialogs/Policy/PolicyModal.js
index 2fa0b5432..4a883fffa 100644
--- a/ui-react/src/components/dialogs/Policy/PolicyModal.js
+++ b/ui-react/src/components/dialogs/Policy/PolicyModal.js
@@ -138,21 +138,6 @@ export default class PolicyModal extends React.Component {
}
createJsonEditor(toscaModel, editorData) {
- /*JSONEditor.defaults.themes.myBootstrap4 = JSONEditor.defaults.themes.bootstrap4.extend({
- getTab: function(text,tabId) {
- var liel = document.createElement('li');
- liel.classList.add('nav-item');
- var ael = document.createElement("a");
- ael.classList.add("nav-link");
- ael.setAttribute("style",'padding:10px;max-width:160px;');
- ael.setAttribute("href", "#" + tabId);
- ael.setAttribute('data-toggle', 'tab');
- text.setAttribute("style",'word-wrap:break-word;');
- ael.appendChild(text);
- liel.appendChild(ael);
- return liel;
- }
- });*/
return new JSONEditor(document.getElementById("editor"),
{ schema: toscaModel,
startval: editorData,
@@ -312,17 +297,17 @@ export default class PolicyModal extends React.Component {
}
renderButton() {
- var allElement = [(<Button variant="secondary" onClick={this.handleClose}>
+ var allElement = [(<Button key="close" variant="secondary" onClick={this.handleClose}>
Close
</Button>)];
if(this.state.policyInstanceType !== OnapConstant.operationalPolicyType || !this.state.loopCache.isOpenLoopTemplate()) {
allElement.push((
- <Button variant="primary" disabled={this.readOnly} onClick={this.handleSave}>
+ <Button key="save" variant="primary" disabled={this.readOnly} onClick={this.handleSave}>
Save Changes
</Button>
));
allElement.push((
- <Button variant="primary" disabled={this.readOnly} onClick={this.handleRefresh}>
+ <Button key="refresh" variant="primary" disabled={this.readOnly} onClick={this.handleRefresh}>
Refresh
</Button>
));