This is an automated email from the ASF dual-hosted git repository. madhan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/ranger.git
commit dba0f11b26ec1c77013297c176ea1000084c7d22 Author: princeap173 <[email protected]> AuthorDate: Thu Jan 11 17:30:34 2024 +0530 RANGER-4647: [Ranger UI] Text overflowing in the datashares table listing in the dataset -> datashares page Signed-off-by: Madhan Neethiraj <[email protected]> --- .../src/views/GovernedData/Dataset/DatashareInDatasetListComp.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/security-admin/src/main/webapp/react-webapp/src/views/GovernedData/Dataset/DatashareInDatasetListComp.jsx b/security-admin/src/main/webapp/react-webapp/src/views/GovernedData/Dataset/DatashareInDatasetListComp.jsx index 82a22de24..60c1f65d5 100644 --- a/security-admin/src/main/webapp/react-webapp/src/views/GovernedData/Dataset/DatashareInDatasetListComp.jsx +++ b/security-admin/src/main/webapp/react-webapp/src/views/GovernedData/Dataset/DatashareInDatasetListComp.jsx @@ -388,7 +388,7 @@ const DatashareInDatasetListComp = ({ <span className="text-truncate" title={val.value} - style={{ maxWidth: "240px", display: "inline-block" }} + style={{ maxWidth: "140px", display: "inline-block" }} > {val.value} </span> @@ -404,7 +404,7 @@ const DatashareInDatasetListComp = ({ <span className="text-truncate" title={val.value} - style={{ maxWidth: "240px", display: "inline-block" }} + style={{ maxWidth: "140px", display: "inline-block" }} > {val.value} </span> @@ -420,7 +420,7 @@ const DatashareInDatasetListComp = ({ <span className="text-truncate" title={val.value} - style={{ maxWidth: "240px", display: "inline-block" }} + style={{ maxWidth: "140px", display: "inline-block" }} > {val.value} </span>
