Skip to content

Commit

Permalink
test with key
Browse files Browse the repository at this point in the history
  • Loading branch information
aloccid-iata authored Apr 30, 2024
1 parent 89f3c67 commit 6bfa405
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Visualizer/components/TableNode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ export const TableNode: FC<NodeProps> = ({ data }) => {

<div className="column-name__inner">
<div className="column-name__name">
{column.key && <KeyIcon />}
{column.array && <KeyIcon />}
{column.name}
{column.array && <ArrayIcon />}
{column.key && <ArrayIcon />}
</div>
<div className="column-name__type">
{column.type}
Expand Down

0 comments on commit 6bfa405

Please sign in to comment.