Fix long field names
This commit is contained in:
parent
f1dfd63fb3
commit
d3625dd980
@ -1275,7 +1275,9 @@ export default function Table(props) {
|
|||||||
}));
|
}));
|
||||||
}}
|
}}
|
||||||
></button>
|
></button>
|
||||||
{fieldData.name}
|
{fieldData.name.length < 10
|
||||||
|
? fieldData.name
|
||||||
|
: fieldData.name.substring(0, 10)}
|
||||||
</div>
|
</div>
|
||||||
<div className="text-zinc-400">
|
<div className="text-zinc-400">
|
||||||
{hoveredField === index ? (
|
{hoveredField === index ? (
|
||||||
|
Loading…
Reference in New Issue
Block a user