diff --git a/src/environments/environment.ts b/src/environments/environment.ts index 64837b2..a586811 100644 --- a/src/environments/environment.ts +++ b/src/environments/environment.ts @@ -7,7 +7,7 @@ export const environment = { production: false, restBaseURL: 'http://192.168.1.50:19080/webapp', webappRPCConfig: { - url: 'ws://192.168.1.103:19090/webapp', + url: 'ws://192.168.1.50:19090/webapp', reconnectInterval: 5000, reconnectRetry: 10, }, diff --git a/src/packages/infra/component/map/map.component.html b/src/packages/infra/component/map/map.component.html index 4f8c23b..0d15065 100644 --- a/src/packages/infra/component/map/map.component.html +++ b/src/packages/infra/component/map/map.component.html @@ -85,7 +85,7 @@ - + diff --git a/src/packages/infra/component/map/map.component.ts b/src/packages/infra/component/map/map.component.ts index 9395e6f..30e4e62 100644 --- a/src/packages/infra/component/map/map.component.ts +++ b/src/packages/infra/component/map/map.component.ts @@ -469,7 +469,6 @@ export class MapComponent implements OnInit, AfterContentInit { } editProbeAlias() { - console.log(this.selectedNode); this.renameProbeVisible = true; } @@ -494,7 +493,8 @@ export class MapComponent implements OnInit, AfterContentInit { } onSaveProbeName(value) { - console.log(value); + const probeName = this.selectedNode.label; + console.log(probeName); } }