Fix long field names

This commit is contained in:
1ilit 2024-02-28 17:56:32 +02:00
parent f1dfd63fb3
commit d3625dd980

View File

@ -1275,7 +1275,9 @@ export default function Table(props) {
}));
}}
></button>
{fieldData.name}
{fieldData.name.length < 10
? fieldData.name
: fieldData.name.substring(0, 10)}
</div>
<div className="text-zinc-400">
{hoveredField === index ? (