mirror of
https://github.com/chartdb/chartdb.git
synced 2026-05-04 08:50:16 -05:00
fix(realtionships section): add the schema to source/target tables (#561)
This commit is contained in:
+13
-1
@@ -98,10 +98,16 @@ export const RelationshipListItemContent: React.FC<
|
||||
<Tooltip>
|
||||
<TooltipTrigger>
|
||||
<div className="truncate text-left text-sm">
|
||||
{sourceTable?.schema
|
||||
? `${sourceTable.schema}.`
|
||||
: ''}
|
||||
{sourceTable?.name}({sourceField?.name})
|
||||
</div>
|
||||
</TooltipTrigger>
|
||||
<TooltipContent>
|
||||
{sourceTable?.schema
|
||||
? `${sourceTable.schema}.`
|
||||
: ''}
|
||||
{sourceTable?.name}({sourceField?.name})
|
||||
</TooltipContent>
|
||||
</Tooltip>
|
||||
@@ -117,11 +123,17 @@ export const RelationshipListItemContent: React.FC<
|
||||
</div>
|
||||
<Tooltip>
|
||||
<TooltipTrigger>
|
||||
<div className="truncate text-left text-sm ">
|
||||
<div className="truncate text-left text-sm">
|
||||
{targetTable?.schema
|
||||
? `${targetTable.schema}.`
|
||||
: ''}
|
||||
{targetTable?.name}({targetField?.name})
|
||||
</div>
|
||||
</TooltipTrigger>
|
||||
<TooltipContent>
|
||||
{targetTable?.schema
|
||||
? `${targetTable.schema}.`
|
||||
: ''}
|
||||
{targetTable?.name}({targetField?.name})
|
||||
</TooltipContent>
|
||||
</Tooltip>
|
||||
|
||||
Reference in New Issue
Block a user