This is an automated email from the ASF dual-hosted git repository.
rfellows pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/master by this push:
new 9a496fe NIFI-6751: - Fixing the identifier on the user table. In a previous task,
this was changed to utilize the URI but that does not work with other code interacting with
this table.
9a496fe is described below
commit 9a496fe9d2681fca06fb6f071d0fa39d71bc5268
Author: Matt Gilman <matt.c.gilman@gmail.com>
AuthorDate: Wed Oct 9 10:55:06 2019 -0400
NIFI-6751:
- Fixing the identifier on the user table. In a previous task, this was changed to utilize
the URI but that does not work with other code interacting with this table.
This closes #3798.
---
.../nifi-web-ui/src/main/webapp/js/nf/users/nf-users-table.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/users/nf-users-table.js
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/users/nf-users-table.js
index 496dba9..9c6a522 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/users/nf-users-table.js
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/users/nf-users-table.js
@@ -1342,7 +1342,7 @@
});
// set the rows
- usersData.setItems(users, 'uri');
+ usersData.setItems(users);
// end the update
usersData.endUpdate();
@@ -1358,4 +1358,4 @@
};
return nfUsersTable;
-}));
\ No newline at end of file
+}));
|