Skip to content

Commit

Permalink
RANGER-4647: [Ranger UI] Text overflowing in the datashares table lis…
Browse files Browse the repository at this point in the history
…ting in the dataset -> datashares page

Signed-off-by: Madhan Neethiraj <[email protected]>
  • Loading branch information
princeap173 authored and mneethiraj committed Jan 11, 2024
1 parent 6ecec1e commit dba0f11
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand All @@ -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>
Expand Down

0 comments on commit dba0f11

Please sign in to comment.