Showing
2 changed files
with
3 additions
and
2 deletions
... | ... | @@ -28,10 +28,10 @@ const express = require('express'); |
28 | 28 | const http = require('http'); |
29 | 29 | const httpProxy = require('http-proxy'); |
30 | 30 | const forwardHost = 'localhost'; |
31 | -const forwardPort = 8080; | |
31 | +const forwardPort = 8085; | |
32 | 32 | |
33 | 33 | const ruleNodeUiforwardHost = 'localhost'; |
34 | -const ruleNodeUiforwardPort = 8080; | |
34 | +const ruleNodeUiforwardPort = 8085; | |
35 | 35 | |
36 | 36 | const app = express(); |
37 | 37 | const server = http.createServer(app); | ... | ... |
... | ... | @@ -112,6 +112,7 @@ export default function EventTableDirective($compile, $templateCache, $rootScope |
112 | 112 | scope.eventType, scope.tenantId, scope.events.nextPageLink); |
113 | 113 | } else { |
114 | 114 | promise = edgeService.getEdgeEvents(scope.entityId, scope.events.nextPageLink); |
115 | + scope.loadEdgeInfo(); | |
115 | 116 | } |
116 | 117 | if (promise) { |
117 | 118 | scope.events.pending = true; | ... | ... |