Crop long types

This commit is contained in:
1ilit 2024-06-15 22:46:19 +03:00
parent 77d1a9ea41
commit 1d1dde27e7

View File

@ -325,7 +325,7 @@ export default function Table(props) {
) : ( ) : (
<div className="flex gap-1 items-center"> <div className="flex gap-1 items-center">
{fieldData.primary && <IconKeyStroked />} {fieldData.primary && <IconKeyStroked />}
<span>{fieldData.type}</span> <span>{fieldData.type.substr(0, 12)}</span>
</div> </div>
)} )}
</div> </div>