X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Fapp%2Fvim-accounts%2Fvim-account-details%2FVimAccountDetailsComponent.ts;h=ac0b5020646c13dbe3c28850d19c78e276f00b11;hb=5cad4ddc1c44e6093f792f4cb3ae32d4be94df05;hp=18dffa069d9cea9a2ae386ddac12f633292a06e8;hpb=4a7a542839c9ed7b6b6118c9faae0bc5d274494f;p=osm%2FNG-UI.git diff --git a/src/app/vim-accounts/vim-account-details/VimAccountDetailsComponent.ts b/src/app/vim-accounts/vim-account-details/VimAccountDetailsComponent.ts index 18dffa0..ac0b502 100644 --- a/src/app/vim-accounts/vim-account-details/VimAccountDetailsComponent.ts +++ b/src/app/vim-accounts/vim-account-details/VimAccountDetailsComponent.ts @@ -352,7 +352,9 @@ export class VimAccountDetailsComponent implements OnInit { private arrayOfLocation(): void { this.getLocation = []; this.locationData.filter((item: VimAccountDetails) => { + // eslint-disable-next-line no-prototype-builtins if (item.hasOwnProperty('config')) { + // eslint-disable-next-line no-prototype-builtins if (item.config.hasOwnProperty('location')) { this.getLocation.push({ name: item.name, location: item.config.location, id: item._id }); } @@ -361,10 +363,12 @@ export class VimAccountDetailsComponent implements OnInit { if (this.getLocation !== []) { this.getLocation.filter((loc: GetLocation) => { if (loc.location !== '') { - const getLatLong: string[] = loc.location.split(','); - this.lng = +getLatLong[CONSTANTNUMBER.splitLongitude]; - this.lat = +getLatLong[CONSTANTNUMBER.splitLatitude]; - this.addMarker(getLatLong[0], loc.id, loc.name); + if (loc.location !== ',,') { + const getLatLong: string[] = loc.location.split(','); + this.lng = +getLatLong[CONSTANTNUMBER.splitLongitude]; + this.lat = +getLatLong[CONSTANTNUMBER.splitLatitude]; + this.addMarker(getLatLong[0], loc.id, loc.name); + } } }); } @@ -427,12 +431,10 @@ export class VimAccountDetailsComponent implements OnInit { } /** Add a click handler to the map to render the popup. @private */ private markerClickEvent(closer: HTMLElement, overlay: Overlay): void { - // tslint:disable-next-line: no-any + // eslint-disable-next-line @typescript-eslint/no-explicit-any this.map.on('singleclick', (evt: any) => { const feature: Feature = this.map.forEachFeatureAtPixel(evt.pixel, - (f: Feature) => { - return f; - }); + (f: Feature) => f); if (feature) { this.setCoordinates(feature, overlay); } else { @@ -447,7 +449,7 @@ export class VimAccountDetailsComponent implements OnInit { }; } /** Set the coordinates point if the feature is available @private */ - // tslint:disable-next-line: no-any + // eslint-disable-next-line @typescript-eslint/no-explicit-any private setCoordinates(feature: any, overlay: Overlay): void { this.popupData = ''; this.popupData += '

' + feature.values_.vimName + '- (' + feature.values_.location + ')

';