Skip to content

Commit

Permalink
Merge pull request #290 from liam-hq/Restored-columnType-visibility
Browse files Browse the repository at this point in the history
Restored columnType visibility
  • Loading branch information
MH4GF authored Dec 17, 2024
2 parents 00ec1d7 + 296fdaa commit dd60f2b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions frontend/.changeset/twenty-eggs-beam.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@liam-hq/erd-core": patch
"@liam-hq/cli": patch
---

Restored columnType visibility.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
transition: opacity 300ms var(--default-timing-function);
}

.wrapper:hover .columnType {
:global([data-erd='table-node']):hover .columnType {
opacity: 1;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export const TableNode: FC<Props> = ({ data }) => {
isActive && styles.wrapperActive,
)}
onClick={handleClick}
data-erd="table-node"
>
<TableHeader data={data} />
{showMode === 'ALL_FIELDS' && <TableColumnList data={data} />}
Expand Down

0 comments on commit dd60f2b

Please sign in to comment.