mirror of
https://github.com/drawdb-io/drawdb.git
synced 2026-02-12 02:00:40 +08:00
Fix long field names
This commit is contained in:
@@ -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 ? (
|
||||||
|
|||||||
Reference in New Issue
Block a user