This is an automated email from the ASF dual-hosted git repository.
krisden pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/knox.git
The following commit(s) were added to refs/heads/master by this push:
new 5d6ed0f KNOX-2104 - Removing redundant resource cleanup so that data
table can keep track of its activePage/rowsOnTable attributes (#179)
5d6ed0f is described below
commit 5d6ed0f1090404664e82eee48d5949846b85df0a
Author: Sandor Molnar <[email protected]>
AuthorDate: Fri Nov 8 03:59:32 2019 +0100
KNOX-2104 - Removing redundant resource cleanup so that data table can keep
track of its activePage/rowsOnTable attributes (#179)
---
gateway-admin-ui/admin-ui/app/resource/resource.component.ts | 1 -
1 file changed, 1 deletion(-)
diff --git a/gateway-admin-ui/admin-ui/app/resource/resource.component.ts
b/gateway-admin-ui/admin-ui/app/resource/resource.component.ts
index ff682a9..6ba0b1c 100644
--- a/gateway-admin-ui/admin-ui/app/resource/resource.component.ts
+++ b/gateway-admin-ui/admin-ui/app/resource/resource.component.ts
@@ -51,7 +51,6 @@ export class ResourceComponent implements OnInit {
this.resourceType = resType;
this.resourceService.selectedResourceType(this.resourceType);
- this.resources = []; // Clear the table before loading the new
resources
this.resourceService.getResources(resType)
.then(resources => {
this.resources = resources;