This is an automated email from the ASF dual-hosted git repository.

madhan pushed a commit to branch ranger-2.5
in repository https://gitbox.apache.org/repos/asf/ranger.git

commit ad7ad44fd48a8067bff2603640ca2d47a28d3547
Author: Mugdha Varadkar <mug...@apache.org>
AuthorDate: Fri Jun 21 13:14:09 2024 +0530

    RANGER-4673 : [addendum] Pagination on the Ranger Admin - Plugin Status page
    
    Signed-off-by: Madhan Neethiraj <mad...@apache.org>
---
 .../src/views/AuditEvent/PluginStatusLogs.jsx      | 47 ----------------------
 1 file changed, 47 deletions(-)

diff --git 
a/security-admin/src/main/webapp/react-webapp/src/views/AuditEvent/PluginStatusLogs.jsx
 
b/security-admin/src/main/webapp/react-webapp/src/views/AuditEvent/PluginStatusLogs.jsx
index c0348f896..6d4a94bb3 100644
--- 
a/security-admin/src/main/webapp/react-webapp/src/views/AuditEvent/PluginStatusLogs.jsx
+++ 
b/security-admin/src/main/webapp/react-webapp/src/views/AuditEvent/PluginStatusLogs.jsx
@@ -489,53 +489,6 @@ function Plugin_Status() {
             minWidth: 190
           }
         ]
-      },
-      {
-        Header: infoIcon("Role"),
-        id: "Role (Time)",
-        columns: [
-          {
-            Header: "Last Update",
-            accessor: "lastRoleUpdateTime",
-            sortType: (rowA, rowB, colAccessor) => {
-              return dateTimeSorting(rowA, rowB, colAccessor);
-            },
-            Cell: ({ row: { original } }) => {
-              return getLastUpdateTime(original.info.lastRoleUpdateTime);
-            },
-            minWidth: 190
-          },
-          {
-            Header: "Download",
-            accessor: "roleDownloadTime",
-            sortType: (rowA, rowB, colAccessor) => {
-              return dateTimeSorting(rowA, rowB, colAccessor);
-            },
-            Cell: ({ row: { original } }) => {
-              return getDownloadTime(
-                original.info.roleDownloadTime,
-                original.info.lastRoleUpdateTime,
-                "Role"
-              );
-            },
-            minWidth: 190
-          },
-          {
-            Header: "Active",
-            accessor: "roleActivationTime",
-            sortType: (rowA, rowB, colAccessor) => {
-              return dateTimeSorting(rowA, rowB, colAccessor);
-            },
-            Cell: ({ row: { original } }) => {
-              return getActivationTime(
-                original.info.roleActivationTime,
-                original.info.lastRoleUpdateTime,
-                "Role"
-              );
-            },
-            minWidth: 190
-          }
-        ]
       }
     ],
     []

Reply via email to