Fix table names taking half of the table width when not hovered
This commit is contained in:
parent
4d7f18c26e
commit
ee44cd2b7c
@ -88,7 +88,8 @@ export default function Table(props) {
|
||||
<div className=" px-3 overflow-hidden text-ellipsis whitespace-nowrap">
|
||||
{props.tableData.name}
|
||||
</div>
|
||||
<div className="invisible group-hover:visible flex justify-end items-center mx-2">
|
||||
<div className="hidden group-hover:block">
|
||||
<div className="flex justify-end items-center mx-2">
|
||||
<Button
|
||||
icon={<IconEdit />}
|
||||
size="small"
|
||||
@ -198,6 +199,7 @@ export default function Table(props) {
|
||||
</Popover>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{props.tableData.fields.map((e, i) => {
|
||||
return settings.showFieldSummary ? (
|
||||
<Popover
|
||||
|
Loading…
Reference in New Issue
Block a user