Fleet UI: Truncated cell truncates when changing screen width (#7613)

This commit is contained in:
RachelElysia
2022-09-07 15:12:37 -04:00
committed by GitHub
parent 70cced99fb
commit af1a8fc219
2 changed files with 2 additions and 1 deletions
@@ -37,7 +37,7 @@ const TruncatedTextCell = ({
>
<span
className={`data-table__truncated-text--cell ${
!tooltipDisabled && "truncated"
tooltipDisabled ? "" : "truncated"
}`}
>
{value}
@@ -4,6 +4,7 @@
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
max-width: 101%;
}
.truncated {