aboutsummaryrefslogtreecommitdiffstats
path: root/ui-react/src/api/LoopActionService.js
diff options
context:
space:
mode:
authorsebdet <sebastien.determe@intl.att.com>2019-09-06 18:11:51 +0200
committersebdet <sebastien.determe@intl.att.com>2019-09-06 18:18:14 +0200
commit337f36602a553ecb937c041a27b1c7270571c647 (patch)
tree935f593c1cb43b421f14cf0e4b84e210cbdb2125 /ui-react/src/api/LoopActionService.js
parent64d4727e2bb0973cf61a125fed240c8c4952d6ff (diff)
Fix sonar issues
FIx some issues reported incorrectly by sonar for the new javascript code Issue-ID: CLAMP-425 Change-Id: I485b727c3a6007c0f0f9301fcda526b028d6251f Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Diffstat (limited to 'ui-react/src/api/LoopActionService.js')
-rw-r--r--ui-react/src/api/LoopActionService.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-react/src/api/LoopActionService.js b/ui-react/src/api/LoopActionService.js
index 6e45ce4b9..7e20e2f6c 100644
--- a/ui-react/src/api/LoopActionService.js
+++ b/ui-react/src/api/LoopActionService.js
@@ -28,7 +28,7 @@ export default class LoopActionService{
const svcAction = uiAction.toLowerCase();
return fetch("/restservices/clds/v2/loop/" + svcAction + "/" + cl_name, {
method: 'PUT',
- credentials: 'same-origin',
+ credentials: 'same-origin'
})
.then(function (response) {
if (response.ok) {
@@ -53,7 +53,7 @@ export default class LoopActionService{
return fetch("/restservices/clds/v2/loop/getstatus/" + cl_name, {
method: 'GET',
- credentials: 'same-origin',
+ credentials: 'same-origin'
})
.then(function (response) {
if (response.ok) {