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) {
const maxLength = 50;
const displayPath = row.length > maxLength ? `...${row.slice(-maxLength + 3)}` : row;
return <TableColumnTextContainer {...props}>{displayPath}</TableColumnTextContainer>;
return (
<TableColumnTextContainer {...props}>
<span>{row}</span>
</TableColumnTextContainer>
);
}
if (row === null) {