X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Fapp%2Fk8s%2Fk8s-add-cluster%2FK8sAddClusterComponent.ts;h=bad533f90cb10f530adc3d33871e0a0e10ba951d;hb=0a34dfa32165036b380ec6ac493469b34007df0a;hp=aa33193fbd3d7bdeed7ad0181c2c4ee440d5c87e;hpb=40cc37ef2bbc4aac5debc9dea0baeb6dbd87a2d7;p=osm%2FNG-UI.git diff --git a/src/app/k8s/k8s-add-cluster/K8sAddClusterComponent.ts b/src/app/k8s/k8s-add-cluster/K8sAddClusterComponent.ts index aa33193..bad533f 100644 --- a/src/app/k8s/k8s-add-cluster/K8sAddClusterComponent.ts +++ b/src/app/k8s/k8s-add-cluster/K8sAddClusterComponent.ts @@ -18,6 +18,7 @@ /** * @file K8sAddClusterComponent.ts. */ +import { isNullOrUndefined } from 'util'; import { HttpHeaders } from '@angular/common/http'; import { Component, ElementRef, Injector, OnInit, ViewChild } from '@angular/core'; import { FormBuilder, FormGroup, Validators } from '@angular/forms'; @@ -29,7 +30,6 @@ import { environment } from 'environment'; import * as jsyaml from 'js-yaml'; import { RestService } from 'RestService'; import { SharedService } from 'SharedService'; -import { isNullOrUndefined } from 'util'; import { VimAccountDetails } from 'VimAccountModel'; /** * Creating Component @@ -209,6 +209,7 @@ export class K8sAddClusterComponent implements OnInit { // Transform Map to json object const jsonDMObject: {} = {}; this.deploymentMethodsSubmit.forEach((value: boolean, key: string): void => { + // eslint-disable-next-line security/detect-object-injection jsonDMObject[key] = value; }); @@ -232,7 +233,6 @@ export class K8sAddClusterComponent implements OnInit { if (files && files.length === 1) { this.sharedService.getFileString(files, 'json').then((fileContent: string): void => { const getNetsJson: string = jsyaml.load(fileContent, { json: true }); - // tslint:disable-next-line: no-backbone-get-set-outside-model this.k8sclusterForm.get('nets').setValue(JSON.stringify(getNetsJson)); }).catch((err: string): void => { if (err === 'typeError') { @@ -255,7 +255,6 @@ export class K8sAddClusterComponent implements OnInit { if (files && files.length === 1) { this.sharedService.getFileString(files, 'yaml').then((fileContent: string): void => { const getCredentialsJson: string = jsyaml.load(fileContent, { json: true }); - // tslint:disable-next-line: no-backbone-get-set-outside-model this.k8sclusterForm.get('credentials').setValue(JSON.stringify(getCredentialsJson)); }).catch((err: string): void => { if (err === 'typeError') { @@ -272,5 +271,4 @@ export class K8sAddClusterComponent implements OnInit { this.fileInputCredentialsLabel.nativeElement.innerText = files[0].name; this.fileInputCredentials.nativeElement.value = null; } - }