Commit 7b5060fc81973a5d78971ce8e94298659c1279c0

Authored by Artem Babak
1 parent 1aa834cc

Removed 2 scope.loadEdgeInfo() lines

... ... @@ -112,7 +112,6 @@ 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();
116 115 }
117 116 if (promise) {
118 117 scope.events.pending = true;
... ... @@ -142,7 +141,6 @@ export default function EventTableDirective($compile, $templateCache, $rootScope
142 141
143 142 scope.$watch("entityId", function(newVal, prevVal) {
144 143 if (newVal && !angular.equals(newVal, prevVal)) {
145   - scope.loadEdgeInfo();
146 144 scope.resetFilter();
147 145 scope.reload();
148 146 }
... ...