mirror of
https://github.com/drawdb-io/drawdb.git
synced 2026-02-12 02:00:40 +08:00
Redo signup page
This commit is contained in:
@@ -100,9 +100,9 @@ export default function Table(props) {
|
||||
? props.tableData.name.length < 10
|
||||
? props.tableData.name
|
||||
: `${props.tableData.name.substring(0, 10)}...`
|
||||
: props.tableData.name.length < 14
|
||||
: props.tableData.name.length < 16
|
||||
? props.tableData.name
|
||||
: `${props.tableData.name.substring(0, 14)}...`}
|
||||
: `${props.tableData.name.substring(0, 16)}...`}
|
||||
</div>
|
||||
{isHovered && (
|
||||
<div className="flex justify-end items-center mx-2">
|
||||
|
||||
Reference in New Issue
Block a user