This is an automated email from the ASF dual-hosted git repository. mehul pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/ranger.git
commit f004731e50abbd1b450e9e8eb97274d394071f43 Author: Brijesh Bhalala <[email protected]> AuthorDate: Wed Jul 26 11:40:10 2023 +0530 RANGER-4293: Addendum change for Long User/group/role name overflowing from delete confirmation dialog box Signed-off-by: Mehul Parikh <[email protected]> --- .../src/views/UserGroupRoleListing/groups_details/GroupListing.jsx | 7 +++---- .../src/views/UserGroupRoleListing/role_details/RoleListing.jsx | 7 +++---- .../src/views/UserGroupRoleListing/users_details/UserListing.jsx | 7 +++---- 3 files changed, 9 insertions(+), 12 deletions(-) diff --git a/security-admin/src/main/webapp/react-webapp/src/views/UserGroupRoleListing/groups_details/GroupListing.jsx b/security-admin/src/main/webapp/react-webapp/src/views/UserGroupRoleListing/groups_details/GroupListing.jsx index 991e27ea9..2ba0ca068 100644 --- a/security-admin/src/main/webapp/react-webapp/src/views/UserGroupRoleListing/groups_details/GroupListing.jsx +++ b/security-admin/src/main/webapp/react-webapp/src/views/UserGroupRoleListing/groups_details/GroupListing.jsx @@ -626,15 +626,14 @@ function Groups() { <Modal show={showModal} onHide={toggleConfirmModal}> <Modal.Header closeButton> <span className="text-word-break"> - {" "} - Are you sure you want to delete group + Are you sure you want to delete the {selectedRows.current.length === 1 ? ( <> - "<b>{selectedRows.current[0].original.name}</b>" ? + <b>"{selectedRows.current[0].original.name}"</b> group ? </> ) : ( <> - "<b>{selectedRows.current.length}</b>" ? + selected<b> {selectedRows.current.length}</b> groups? </> )} </span> diff --git a/security-admin/src/main/webapp/react-webapp/src/views/UserGroupRoleListing/role_details/RoleListing.jsx b/security-admin/src/main/webapp/react-webapp/src/views/UserGroupRoleListing/role_details/RoleListing.jsx index e6293877c..a65fcbe5c 100644 --- a/security-admin/src/main/webapp/react-webapp/src/views/UserGroupRoleListing/role_details/RoleListing.jsx +++ b/security-admin/src/main/webapp/react-webapp/src/views/UserGroupRoleListing/role_details/RoleListing.jsx @@ -406,15 +406,14 @@ function Roles() { <Modal show={showModal} onHide={toggleConfirmModal}> <Modal.Header closeButton> <span className="text-word-break"> - {" "} - Are you sure you want to delete group + Are you sure you want to delete the {selectedRows.current.length === 1 ? ( <> - "<b>{selectedRows.current[0].original.name}</b>" ? + <b>"{selectedRows.current[0].original.name}"</b> role ? </> ) : ( <> - "<b>{selectedRows.current.length}</b>" ? + selected<b> {selectedRows.current.length}</b> roles? </> )} </span> diff --git a/security-admin/src/main/webapp/react-webapp/src/views/UserGroupRoleListing/users_details/UserListing.jsx b/security-admin/src/main/webapp/react-webapp/src/views/UserGroupRoleListing/users_details/UserListing.jsx index 95a21664d..c3150fd65 100644 --- a/security-admin/src/main/webapp/react-webapp/src/views/UserGroupRoleListing/users_details/UserListing.jsx +++ b/security-admin/src/main/webapp/react-webapp/src/views/UserGroupRoleListing/users_details/UserListing.jsx @@ -692,15 +692,14 @@ function Users() { <Modal show={showModal} onHide={toggleConfirmModal}> <Modal.Header closeButton> <span className="text-word-break"> - {" "} - Are you sure you want to delete user + Are you sure you want to delete the {selectedRows.current.length === 1 ? ( <> - "<b>{selectedRows.current[0].original.name}</b>" ? + <b>"{selectedRows.current[0].original.name}"</b> user ? </> ) : ( <> - "<b>{selectedRows.current.length}</b>" ? + selected<b> {selectedRows.current.length}</b> users? </> )} </span>
