mirror of
https://github.com/chartdb/chartdb.git
synced 2025-11-03 05:23:26 +00:00
fix: remove many to many rel option (#933)
This commit is contained in:
@@ -173,9 +173,11 @@ export const RelationshipListItemContent: React.FC<
|
||||
<SelectItem value="many_to_one">
|
||||
{t('relationship_type.many_to_one')}
|
||||
</SelectItem>
|
||||
<SelectItem value="many_to_many">
|
||||
{t('relationship_type.many_to_many')}
|
||||
</SelectItem>
|
||||
{relationshipType === 'many_to_many' ? (
|
||||
<SelectItem value="many_to_many">
|
||||
{t('relationship_type.many_to_many')}
|
||||
</SelectItem>
|
||||
) : null}
|
||||
</SelectGroup>
|
||||
</SelectContent>
|
||||
</Select>
|
||||
|
||||
Reference in New Issue
Block a user