Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/components/EditorSidePanel/TablesTab/TableInfo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ export default function TableInfo({ data }) {
</Collapse>
</Card>
<div className="flex flex-col gap-1">
<div className="flex gap-1 w-full">
<div className="flex gap-1 w-full">
{!(settings.notation === Notation.CROWS_FOOT || settings.notation === Notation.IDEF1X)? (
<Popover
content={
Expand Down Expand Up @@ -275,7 +275,7 @@ export default function TableInfo({ data }) {
/>
</Popover >
):null}

<div className="flex gap-1 flex grow">
<Button
block
Expand Down Expand Up @@ -343,7 +343,7 @@ export default function TableInfo({ data }) {
<div className="flex items-center gap-5 mt-1">
<Button
icon={<IconDeleteStroked />}
iconPosition="Right"
iconPosition="right"
type="danger"
onClick={() => deleteTable(data.id)}
className="flex-grow"
Expand All @@ -354,4 +354,4 @@ export default function TableInfo({ data }) {
</div>
</div>
);
}
}