remove truncation from path column (#1351)

This commit is contained in:
jeffvli
2025-12-09 17:38:16 -08:00
parent fcfe39aa2b
commit 753f35f81b
@@ -11,10 +11,11 @@ export const PathColumn = (props: ItemTableListInnerColumn) => {
]; ];
if (typeof row === 'string' && row) { if (typeof row === 'string' && row) {
const maxLength = 50; return (
const displayPath = row.length > maxLength ? `...${row.slice(-maxLength + 3)}` : row; <TableColumnTextContainer {...props}>
<span>{row}</span>
return <TableColumnTextContainer {...props}>{displayPath}</TableColumnTextContainer>; </TableColumnTextContainer>
);
} }
if (row === null) { if (row === null) {